diff --git a/src/branching/rebasing.md b/src/branching/rebasing.md index 23ddbd8..6eccb3f 100644 --- a/src/branching/rebasing.md +++ b/src/branching/rebasing.md @@ -4,4 +4,7 @@ ```bash # Rebase the current branch by appying them to the passed branch. git rebase + +# Continue a rebase. +git rebase --continue ```