We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f62e5 commit 9c70b75Copy full SHA for 9c70b75
pages/common/git-rebase.md
@@ -2,6 +2,18 @@
2
3
> Apply local commits on top of another branch's history
4
5
-- Rebase your local branch with the latest changes in master
+- Rebase your local branch interactively with the latest changes in local master
6
7
-`git rebase -i master` (Then follow the directions in the terminal for merge conflicts)
+`git rebase -i master`
8
+
9
+- Rebase your local branch interactively with the latest changes from upstream
10
11
+`git fetch origin; git rebase -i origin/master`
12
13
+- Handling an active rebase merge failure, after editing conflicting file(s)
14
15
+`git rebase --continue`
16
17
+- Abort a rebase in-progress
18
19
+`git rebase --abort`
0 commit comments