config (875B)
1 [alias] 2 a = add 3 b = branch 4 ba = branch --all 5 c = commit 6 ca = commit --amend 7 cl = clone 8 cm = commit --message 9 co = checkout 10 cot = checkout --theirs 11 coo = checkout --ours 12 con = config 13 d = diff 14 ds = diff --staged 15 l = log 16 ld = log --pretty=format:"%h %ad %s" --date=short --all 17 lg = log --all --grep 18 lgr = log --graph --oneline --decorate --all 19 lss = log --show-signature 20 p = pull 21 po = pull origin 22 pu = push 23 put = push --tags 24 puo = push -u origin 25 r = reset 26 rs = reset --soft 27 res = remote set-url 28 reso = remote set-url origin 29 rev = remote --verbose 30 sm = submodule 31 st = status 32 suir = submodule update --init --recursive 33 wt = worktree 34 wta = worktree add 35 ctags = !.git/hooks/ctags 36 37 [push] 38 autoSetupRemote = true 39 40 [difftool] 41 prompt = false 42 43 [init] 44 defaultBranch = main 45 # templatedir = ~/.config/git/template 46 47 [include] 48 path = ~/.config/git/user