git-rebase: Add example with --skip option

italian
Peter Nguyen 2019-07-07 11:01:27 +02:00 committed by Starbeamrainbowlabs
parent e55edff06d
commit df4bae9a52
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
`git rebase --continue`
- Continue a rebase that was paused due to merge conflicts, by skipping the conflicted commit:
`git rebase --skip`
- Abort a rebase in progress (e.g. if it is interrupted by a merge conflict):
`git rebase --abort`