You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ogrisel edited this page Nov 22, 2012
·
1 revision
Merging by rebase
This can only be done by repo collaborators.
If you use the github "merge" button, a merge commit will always be created,
even if the merge was fast-forward.
git checkout master
git pull upstream master
git rebase master feature_branch # will leave you in feature_branch
git checkout master
git merge feature_branch # will not create a merge commit!
git push upstream master