From 459b936ec6066d7e81b5f9f7f7344c9e575f4e84 Mon Sep 17 00:00:00 2001 From: James Skemp Date: Mon, 24 Apr 2023 22:54:35 -0500 Subject: [PATCH] Add command to continue rebasing --- src/branching/rebasing.md | 3 +++ 1 file changed, 3 insertions(+) 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 ```