aboutsummaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-09-08 03:20:24 +0800
committerGuangxiong Lin <[email protected]>2022-09-08 03:20:24 +0800
commitac5eaaaeac34ee2390e6bdfc420a8235f3f40400 (patch)
tree28a90ef8b70429936a7b5709719cc1f8616d537a /.gitconfig
parent26574d31ba44ff1c131effde07436eca3ba0e9df (diff)
downloaddotfiles-ac5eaaaeac34ee2390e6bdfc420a8235f3f40400.tar.gz
dotfiles-ac5eaaaeac34ee2390e6bdfc420a8235f3f40400.tar.bz2
dotfiles-ac5eaaaeac34ee2390e6bdfc420a8235f3f40400.zip
Remove oh-my-zsh git alias and create my own ones
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig31
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig
index 24fc57c..02f0814 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -13,3 +13,34 @@
[core]
excludesFile = ~/.gitignore
attributesfile = ~/.gitattributes
+[alias]
+ ap = add --patch
+ ci = commit
+ br = branch
+ co = checkout
+ st = status
+ stsb = status --short --branch
+ df = diff
+ dfc = diff --cached
+ dt = difftool
+ mt = mergetool
+
+ rmc = rm --cached
+ untrack = rm --cached
+
+ lo = log --oneline --graph --decorate
+ loa = log --oneline --graph --decorate --all
+
+ lol = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset'
+ lols = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --stat
+ lola = log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --all
+
+ cp = cherry-pick
+ cpa = cherry-pick --abort
+ cpc = cherry-pick --continue
+
+ rb = rebase
+ rbi = rebase -i
+ rbc = rebase --continue
+ rba = rebase --abort
+ rbs = rebase --skip