22
loading...
This website collects cookies to deliver better user experience
/// checkout the branch your are working and merge the branch with latest changes into it.
git checkout branch1
git merge branch2
/// checkout the branch your are working and rebase the branch with latest changes into it.
git checkout branch1
git rebase branch2
git rebase branch2 -i
git rebase branch2 -i HEAD~3