Add command to continue rebasing

This commit is contained in:
James Skemp 2023-04-24 22:54:35 -05:00
parent ddf7d8b589
commit 459b936ec6
1 changed files with 3 additions and 0 deletions

View File

@ -4,4 +4,7 @@
```bash
# Rebase the current branch by appying them to the passed branch.
git rebase <branchName>
# Continue a rebase.
git rebase --continue
```