Commit d7d1d57c50251647759d00fdcdbf24a85716f06a
Add `git rebase` aliases to bash
Author: xaizek
Author date (UTC): 2026-06-22 17:22
Committer name: xaizek
Committer date (UTC): 2026-06-22 17:22
Parent(s): c189c87958cfee63baae85579400983b6cf446f5
Signing key: 99DC5E4DB05F6BE2
Tree: b26e7091fa81ae3d738dbeac93131c0569881dc3
| File |
Lines added |
Lines deleted |
| bashrc |
9 |
0 |
| File bashrc changed (mode: 100644) (index 70a48d4..5d92641) |
| ... |
... |
alias gb='git branch' |
| 130 |
130 |
# rename a branch |
# rename a branch |
| 131 |
131 |
alias gm='git branch --move' |
alias gm='git branch --move' |
| 132 |
132 |
|
|
|
133 |
|
# rebase-related |
|
134 |
|
alias rb='git rebase' |
|
135 |
|
alias rbi='git rebase --interactive' |
|
136 |
|
alias rba='git rebase --abort' |
|
137 |
|
alias rbc='git rebase --continue' |
|
138 |
|
alias rbe='git rebase --edit-todo' |
|
139 |
|
alias rbs='git rebase --skip' |
|
140 |
|
alias rbh='git rebase --show' |
|
141 |
|
|
| 133 |
142 |
# make a commit |
# make a commit |
| 134 |
143 |
function gc() |
function gc() |
| 135 |
144 |
{ |
{ |