]> git.phdru.name Git - dotfiles.git/blob - .gitconfig
.gitconfig: add lasttag and lasttagged aliases
[dotfiles.git] / .gitconfig
1 [alias]
2 # I copied some aliases from http://gitalias.com/ and other sources.
3 # Some I've added to gitalias. Some are mine.
4
5   # One letter alias for our most frequent commands.
6   a = add
7   b = branch
8   c = commit
9   d = diff
10   f = fetch
11   g = grep
12   l = log
13   m = merge
14   o = checkout
15   p = pull
16   r = remote
17   s = status
18   w = whatchanged
19
20   ### add ###
21
22   aa = add --all
23
24   ap = add --patch
25
26   au = add --update
27
28   ### branch ###
29
30   be = branch --edit-description
31
32   bm = branch --merged
33
34   bnm = branch --no-merged
35
36   ### commit ###
37
38   cm = commit --message
39
40   ### checkout ###
41
42   co = checkout
43
44   ### cherry-pick ###
45
46   chp = cherry-pick
47
48   ### diff ###
49
50   # diff - show changes not yet staged
51   dc = diff --cached
52
53   # diff - changes about to be commited
54   ds = diff --staged
55
56   # diff - show changes but by word, not line
57   dw = diff --word-diff
58
59   ### rebase ###
60
61   rb = rebase
62
63   rba = rebase --abort
64
65   rbc = rebase --continue
66
67   rbs = rebase --skip
68
69   # See https://blog.filippo.io/git-fixup-amending-an-older-commit/
70   # This is a slightly modified version
71   fixup = "!f() { TARGET=$(git rev-parse \"$1\"); git commit --fixup=$TARGET && GIT_EDITOR=true exec git rebase --interactive --autosquash $TARGET~; }; f"
72
73   ### remote ###
74
75   rs = remote show
76
77   ru = remote update
78
79   rp = remote prune
80
81   incoming = !git remote update --prune; exec git log ..@{upstream}
82   outgoing = log @{upstream}..
83
84   # Push to all remotes
85   push-to-all-remotes = !git remote | xargs -I% -n1 git push %
86
87   ### show-branch ###
88
89   # show-branch - print a list of branches and their commits.
90   sb = show-branch
91
92   ### status ###
93
94   ss = status --short
95
96   ssb = status --short --branch
97
98   aliases = "!git config --get-regexp '^alias\\.' | colrm 1 6 | sed 's/ / = /'"
99
100   add-alias = "!f() { [ $# = 3 ] && git config $1 alias.\"$2\" \"$3\" && return 0 || echo \"Usage: git add-(local|global)-alias <new alias> <original command>\" >&2 && return 1; }; f"
101   add-global-alias = "!exec git add-alias --global"
102   add-local-alias = "!exec git add-alias --local"
103
104   # Last tag in the current branch
105   lasttag = describe --tags --abbrev=0
106
107   # Latest annotated tag in all branches
108   lasttagged = !git describe --tags `git rev-list --tags --max-count=1`
109
110   # List all tags
111   tags = tag --list -n1
112
113   # Find text in any commit ever
114   grep-all = !"f() { git rev-list --all | xargs git grep \"$@\"; }; f"
115
116   # Edit all files of the given type
117   edit-cached = !"f() { git ls-files --cached | sort -u ; }; exec `git var GIT_EDITOR` `f`"
118   edit-deleted = !"f() { git ls-files --deleted | sort -u ; }; exec `git var GIT_EDITOR` `f`"
119   edit-others = !"f() { git ls-files --others | sort -u ; }; exec `git var GIT_EDITOR` `f`"
120   edit-ignored = !"f() { git ls-files --ignored | sort -u ; }; exec `git var GIT_EDITOR` `f`"
121   edit-killed = !"f() { git ls-files --killed | sort -u ; }; exec `git var GIT_EDITOR` `f`"
122   edit-modified = !"f() { git ls-files --modified | sort -u ; }; exec `git var GIT_EDITOR` `f`"
123   edit-stage = !"f() { git ls-files --stage | cut -f2 | sort -u ; }; exec `git var GIT_EDITOR` `f`"
124
125   # Editing and adding conflicted files: when we get many merge conflicts
126   # and want to quickly solve them using an editor, then add the  files.
127   edit-unmerged = !"f() { git ls-files --unmerged | cut -f2 | sort -u ; }; exec `git var GIT_EDITOR` `f`"
128   add-unmerged = !"f() { git ls-files --unmerged | cut -f2 | sort -u ; }; exec git add `f`"
129
130   # Get the current branch name
131   branch-name = rev-parse --abbrev-ref HEAD
132
133         branches = branch --all
134         ca = commit --all
135         cv = commit --verbose
136         cav = commit --all --verbose
137         cane = commit --amend --no-edit
138         checkin = commit
139         ci = commit
140         cat = cat-file -p
141         dump = cat-file -p
142         file = cat-file -t
143         type = cat-file -t
144         l1 = log --decorate --oneline
145         l5 = log --decorate -5
146         ld = log --decorate
147         lg = log --decorate --graph
148         lg1 = log --decorate --graph --oneline
149         lg5 = log --decorate --graph -5
150         lr = log --decorate --reverse
151         lr1 = log --decorate --reverse --oneline
152         lr5 = log --decorate --reverse -5
153         null-merge = merge --strategy=ours
154         rbi123 = "!f() { exec git rebase --interactive $1 $2 ${3:-\"@{upstream\\}\"}; }; f"
155         rbi = !exec git rbi123 '' ''
156         rbia = !exec git rbi123 --autosquash ''
157         rbiap = !exec git rbi123 --autosquash --preserve-merges
158         rbip = !exec git rbi123 '' --preserve-merges
159         remotes = remote --verbose
160         #root = !exec pwd
161         root = rev-parse --show-toplevel
162         st = status --short
163         stb = status --short --branch
164         sd = show --decorate
165         sw = show --word-diff --decorate
166         unstage = reset HEAD --
167
168 [branch]
169         autosetuprebase = always
170
171 [color]
172         ui = auto
173
174 [include]
175         path = ~/lib/config/git/light_bg
176
177 [log]
178         abbrevCommit = true
179
180 [merge]
181         tool = vimdiff
182
183 #[mergetool "vimdiff3"]
184 # Don't forget to add -f for gvim
185 # 3 way diffs
186 #       cmd = vim -d \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\" -c \"wincmd J\"
187
188 [push]
189         default = simple
190
191 [receive]
192         denyNonFastForwards = true
193
194 [web]
195         browser = webbrowser
196
197 [browser "webbrowser"]
198         cmd = webbrowser -n
199
200 [gui]
201         fontui = -family \"DejaVu Sans\" -size 18 -weight normal -slant roman -underline 0 -overstrike 0
202         fontdiff = -family \"DejaVu Sans Mono\" -size 18 -weight normal -slant roman -underline 0 -overstrike 0