git: Add aliases for faster rebase

23.11
Simon Bruder 2023-10-25 21:16:12 +02:00
parent 8519bada60
commit 45d4a30aac
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,7 @@
gco = "git checkout";
gcp = "git cherry-pick";
gcv = "git commit --verbose";
gcam = "git commit --amend";
gd = "git diff";
gdc = "git diff --cached";
gfom = "git fetch origin ${defaultBranch}";
@ -103,6 +104,7 @@
gls = "git log --stat";
gp = "git push";
grb = "git rebase";
grbc = "git rebase --continue";
grbi = "git rebase -i";
grbias = "git rebase -i --autosquash";
grbim = "git rebase -i ${defaultBranch}";