-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
75 lines (67 loc) · 2.18 KB
/
.gitconfig
File metadata and controls
75 lines (67 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[user]
email = tom@chillidonut.com
name = Tom McKenzie
signingkey = 896D4BE5
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red
new = cyan
[color "status"]
added = yellow
changed = green
untracked = cyan
[help]
autocorrect = 10
[alias]
p = push
pp = publish
s = switch
sc = switch create
rb = pull --rebase
rbc = rebase --continue
rba = rebase --abort
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset' --abbrev-commit --date=relative
b = for-each-ref --count=10 --sort='-authordate:iso8601' --format=' %(color:green)%(authordate:relative) %09%(color:white)%(objectname:short) %(color:yellow)%(refname:short) %09%(color:white)%(upstream:track) %(contents:subject)' refs/heads --no-merged
edit-conflicted = ! git diff --name-only | uniq | xargs $(echo $EDITOR)
history = log -p --
pushf = push --force-with-lease
pullall = ! git pull && git submodule update --init --recursive --remote
publish = ! git push -u origin `git rev-parse --abbrev-ref HEAD`
diverged = ! git log --graph --date=relative --oneline `git rev-parse --abbrev-ref HEAD` origin/`git rev-parse --abbrev-ref HEAD`
fixup = "!f() { TARGET=$(git rev-parse "$1"); git commit --fixup=$TARGET ${@:2} && EDITOR=true git rebase -i --autostash --autosquash $TARGET^; }; f"
last = rev-list -1 HEAD
[core]
excludesfile = /Users/tom/.gitignore_global
whitespace = tab-in-indent,trailing-space,space-before-tab
ignorecase = false
# editor = vim -c 'startinsert'
[push]
default = upstream
[status]
submoduleSummary = true
[merge "npm-merge-driver"]
name = automatically merge npm lockfiles
driver = npx npm-merge-driver merge %A %O %B %P
# [pull]
# rebase = preserve
[pull]
ff = only
[advice]
detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[include]
path = ~/dotfiles/.gitconfig_difftastic
condition = command -v difft >/dev/null 2>&1