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 ff158c0 commit d5de4cfCopy full SHA for d5de4cf
git/readme.md
@@ -15,3 +15,9 @@ git submodule deinit -f vendor/bash-it
15
rm -rf .git/modules/vendor/bash-it
16
git rm -f vendor/bash-it
17
```
18
+
19
+Rebase
20
21
+```
22
+git -c sequence.editor="code --wait --reuse-window" rebase -i HEAD~ # add `.` to rebase the last commit or number of commits
23
shell/aliase/git
@@ -83,3 +83,5 @@ _git_tag_it() {
83
}
84
85
alias g.tagit='_git_tag_it' # tag + message
86
87
+alias g.rbs='git -c sequence.editor="code --wait --reuse-window" rebase -i HEAD~' # add `.` to rebase the last commit or number of commits
0 commit comments