How to Git merge one branch into another

preview_player
Показать описание
Need to merge one branch into another in Git? It's not too hard if your files are all committed and you don't have any conflict between branches.

The key to doing a git merge of one branch into another is to switch into the branch the various changes are to merge into. Then issue the git merge command and specify the name of the 'one' branch. The changes from the one branch will Git merge into the other.

git merge onebranch
Рекомендации по теме
Комментарии
Автор

take a drink every time he says "branch"

lukescurrenthobby