-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig_global
53 lines (49 loc) · 1.05 KB
/
gitconfig_global
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
[user]
email = [email protected]
name = Gil Forsyth
[core]
safecrlf = false
autocrlf = input
[alias]
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
status = status -uno
branches = branch -a
tags = tag
stashes = stash list
unstage = reset -q HEAD --
discard = checkout --
uncommit = reset --mixed HEAD~
amend = commit --amend
[credential]
helper = cache --timeout=3600
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true
[rerere]
enabled = true
[github]
user = gforsyth
[branch]
sort = -committerdate
[push]
autoSetupRemote = true
[merge]
conflictstyle = zdiff3
[init]
defaultBranch = main
[url "[email protected]:"]
insteadOf = "https://github.com/"
[commit]
verbose = true
[diff]
tool = difftastic
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true