1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

git-rebase: add --onto option (#1080)

This commit is contained in:
Te-Chi Liu 2016-09-21 14:58:28 +08:00 committed by Agniva De Sarker
parent c73c797594
commit a6efcb6ba8

View file

@ -6,7 +6,7 @@
`git rebase -i master`
- Rebase your local branch interactively with the latest changes from upstream:
- Rebase your local branch interactively with the latest changes from upstream:
`git fetch origin; git rebase -i origin/master`
@ -17,3 +17,7 @@
- Abort a rebase in-progress:
`git rebase --abort`
- Rebase your local branch by specifying new base commit and old base commit:
`git rebase --onto {{new_base_commit}} {{old_base_commit}}`