.gitconfig

Wed, 08 Mar 2017 15:28:47 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 08 Mar 2017 15:28:47 -0500
changeset 531
5c9cdf7fa512
parent 522
35a55312d21d
child 540
c51f6fc7c727
permissions
-rw-r--r--

Ignore timezone issues

93
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 [user]
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
2 email = mhoward@roomag.org
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
3 name = Meredith Howard
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
4
251
308d12c05585 Add fsckobjects = true
Meredith Howard <mhoward@roomag.org>
parents: 229
diff changeset
5 [transfer]
308d12c05585 Add fsckobjects = true
Meredith Howard <mhoward@roomag.org>
parents: 229
diff changeset
6 fsckobjects = true
308d12c05585 Add fsckobjects = true
Meredith Howard <mhoward@roomag.org>
parents: 229
diff changeset
7
531
5c9cdf7fa512 Ignore timezone issues
Meredith Howard <mhoward@roomag.org>
parents: 522
diff changeset
8 [fsck]
5c9cdf7fa512 Ignore timezone issues
Meredith Howard <mhoward@roomag.org>
parents: 522
diff changeset
9 badTimezone = ignore
5c9cdf7fa512 Ignore timezone issues
Meredith Howard <mhoward@roomag.org>
parents: 522
diff changeset
10
93
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
11 [ui]
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
12 color = true
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
13
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
14 [core]
506
2a6899f40b2e smartcase please
Meredith Howard <mhoward@roomag.org>
parents: 497
diff changeset
15 pager = LESS='FSRXi' less
93
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
16
336
a921d84589cf add diff.compactionheuristic = true
Meredith Howard <mhoward@roomag.org>
parents: 335
diff changeset
17 [diff]
a921d84589cf add diff.compactionheuristic = true
Meredith Howard <mhoward@roomag.org>
parents: 335
diff changeset
18 compactionheuristic = true
a921d84589cf add diff.compactionheuristic = true
Meredith Howard <mhoward@roomag.org>
parents: 335
diff changeset
19
93
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
20 [alias]
196
29fce4f498e5 Update gitconfig alases
Meredith Howard <mhoward@roomag.org>
parents: 190
diff changeset
21 ci = commit
207
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
22 rec = commit -p
196
29fce4f498e5 Update gitconfig alases
Meredith Howard <mhoward@roomag.org>
parents: 190
diff changeset
23 unrec = checkout --patch
522
35a55312d21d add amend
Meredith Howard <mhoward@roomag.org>
parents: 506
diff changeset
24 amend = commit -p --amend
207
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
25 st = status -sb
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
26 co = checkout
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
27 br = branch
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
28 staged = diff --cached
af14b7f5bc42 Add some new aliases
Meredith Howard <mhoward@roomag.org>
parents: 197
diff changeset
29 unstage = reset HEAD --
491
22a04cc90ff9 skip --all, confuses rebase later
Meredith Howard <mhoward@roomag.org>
parents: 489
diff changeset
30 up = pull -r --prune
310
6dd92510e2bd revert to update
Meredith Howard <mhoward@roomag.org>
parents: 307
diff changeset
31 update = "!git remote update -p && git merge --ff-only --stat @{u}"
228
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
32 in = "!git remote update -p; git log --pretty=onelinecustom ..@{u}"
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
33 out = "!git log --pretty=onelinecustom @{u}.."
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
34 new = "!git log --pretty=onelinecustom $1@{1}..$1@{0}"
196
29fce4f498e5 Update gitconfig alases
Meredith Howard <mhoward@roomag.org>
parents: 190
diff changeset
35 cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 echo git branch -d"
228
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
36 glog = log --graph --pretty=onelinecustom
492
e5d6f6523162 Accept extra args
Meredith Howard <mhoward@roomag.org>
parents: 491
diff changeset
37 recent = !sh -c 'git for-each-ref --count=${1:-20} --sort=-committerdate --format=\"%(committerdate:short) %(refname:short)\" ${@:2}' -
228
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
38
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
39 [pretty]
497
5df02ebeedf9 Tweak pretty fmt
Meredith Howard <mhoward@roomag.org>
parents: 496
diff changeset
40 onelinecustom = tformat:%C(magenta)%h%Creset %G? -%C(yellow)%d%Creset %s %C(green)(%cr)%Creset %C(cyan)<%an>%Creset
93
f8612a811de0 Merge .gitconfig from mhoward-lt(92aa984868e2)
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
41
166
7d0c758c7a4d default to rebase w/ pull
Meredith Howard <mhoward@roomag.org>
parents: 93
diff changeset
42 [branch]
7d0c758c7a4d default to rebase w/ pull
Meredith Howard <mhoward@roomag.org>
parents: 93
diff changeset
43 autosetuprebase = always
196
29fce4f498e5 Update gitconfig alases
Meredith Howard <mhoward@roomag.org>
parents: 190
diff changeset
44 autosetupmerge = always
177
6d15a355e17a .gitconfig additions
Meredith Howard <mhoward@roomag.org>
parents: 173
diff changeset
45
6d15a355e17a .gitconfig additions
Meredith Howard <mhoward@roomag.org>
parents: 173
diff changeset
46 [push]
196
29fce4f498e5 Update gitconfig alases
Meredith Howard <mhoward@roomag.org>
parents: 190
diff changeset
47 default = current
177
6d15a355e17a .gitconfig additions
Meredith Howard <mhoward@roomag.org>
parents: 173
diff changeset
48
6d15a355e17a .gitconfig additions
Meredith Howard <mhoward@roomag.org>
parents: 173
diff changeset
49 [rebase]
6d15a355e17a .gitconfig additions
Meredith Howard <mhoward@roomag.org>
parents: 173
diff changeset
50 stat = true
173
757eaebee0a2 add include .gitconfig.local
Meredith Howard <mhoward@roomag.org>
parents: 166
diff changeset
51
494
d6d298c93437 I like verbose commits
Meredith Howard <mhoward@roomag.org>
parents: 492
diff changeset
52 [commit]
d6d298c93437 I like verbose commits
Meredith Howard <mhoward@roomag.org>
parents: 492
diff changeset
53 verbose = 1
d6d298c93437 I like verbose commits
Meredith Howard <mhoward@roomag.org>
parents: 492
diff changeset
54
186
4d168818b573 verbose git-up
Meredith Howard <mhoward@roomag.org>
parents: 182
diff changeset
55 # include.path is available in git 1.7.10 and later
173
757eaebee0a2 add include .gitconfig.local
Meredith Howard <mhoward@roomag.org>
parents: 166
diff changeset
56 [include]
757eaebee0a2 add include .gitconfig.local
Meredith Howard <mhoward@roomag.org>
parents: 166
diff changeset
57 path = ~/.gitconfig.local
757eaebee0a2 add include .gitconfig.local
Meredith Howard <mhoward@roomag.org>
parents: 166
diff changeset
58
228
bf3429214b78 Nice up log output in a few places
Meredith Howard <mhoward@roomag.org>
parents: 212
diff changeset
59 # vim: noet:sw=8

mercurial