This repository was archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitconfig
More file actions
53 lines (53 loc) · 1.22 KB
/
.gitconfig
File metadata and controls
53 lines (53 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
[push]
default = upstream
followTags = true
[core]
trustctime = false
editor = vim
filemode = false
[color]
ui = auto
diff = always
[credential]
helper = cache --timeout=3600
[merge]
tool = meld
[mergetool]
keeptemporaries = false
keepbackups = false
prompt = false
trustexitcode = false
[alias]
br = branch
ci = commit
cl = clone
co = checkout
cp = cherry-pick
dc = diff --cached
hidden = "!f() { git ls-files -v \"$@\" | grep \"^[a-z]\"; }; f"
ignored = "!f() { git status -s --ignored \"$@\" | grep \"^!!\"; }; f"
last = log -1 --stat
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue<%an>%Creset' --abbrev-commit --date=relative --all
oops = commit --amend --no-edit
st = status
unhide = update-index --no-assume-unchanged
unhide-all = update-index --really-refresh
unstage = reset HEAD --
hide = update-index --assume-unchanged
[user]
[mergetool "meld"]
path = C:\\Program Files (x86)\\Meld\\Meld.exe
[color "diff"]
meta = yellow
meta = yellow
frag = magenta
whitespace = red
[pager]
diff = diff-so-fancy | less --tabs=2 -RFX
show = diff-so-fancy | less --tabs=2 -RFX
[diff]
mnemonicPrefix = true
renames = true
wordRegex = .
[status]
showUntrackedFiles = all