-
Notifications
You must be signed in to change notification settings - Fork 13
Merging
Zhamri Che Ani edited this page Jan 3, 2022
·
3 revisions
Basic Merging
$ git checkout master
Switched to branch 'master'
$ git merge stiw3054
Basic Merging Conflicts
$ git mergetool
Example steps
$ git fetch origin
$ git switch new-branch
$ git merge master
(open the file, fix conflict)
$ git switch master
$ git merge new-branch
$ git push origin master