forked from dcuddeback/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
53 lines (43 loc) · 1.22 KB
/
.gitconfig
File metadata and controls
53 lines (43 loc) · 1.22 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
[core]
excludesfile = ~/.gitignore
whitespace = tab-in-indent,tabwidth=2
[user]
name = Gary Button
email = "garyhbutton@gmail.com"
[color]
ui = auto
[status]
relativePaths = true
submodulesummary = true
showUntrackedFiles = all
[push]
default = upstream
followTags = true
[rebase]
autosquash = true
[apply]
ignorewhitespace = change
[merge]
tool = "vimdiff"
[mergetool]
prompt = false
; Use MacVim as a mergetool
[mergetool "mvimdiff"]
cmd = mvim -f -d -c \"wincmd J\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
[alias]
summary = log --pretty=oneline
active = branch --contains 'HEAD@{2 weeks ago}'
history = log --first-parent --pretty=oneline --abbrev-commit --decorate --color
tree = log --graph --pretty=oneline --abbrev-commit --decorate --color
forest = log --graph --pretty=oneline --abbrev-commit --decorate --color --all
recent = log --graph --pretty=oneline --abbrev-commit --decorate --color -10
message = log --format=format:%s -1
last = log --format=format:%H -1
revs = log --format=format:%H
preview = diff --staged
[diff "sopsdiffer"]
textconv = sops -d
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[branch]
sort = committerdate