Skip to content

Instantly share code, notes, and snippets.

@jazithedev
jazithedev / git.md
Created May 22, 2019 12:18
Git notes
git checkout feat1
git rebase master
git checkout feat2
git rebase --onto feat1 origin/feat1 feat2
git checkout feat3
git rebase --onto feat2 origin/feat2 feat3
git push -f feat1 feat2 feat3