-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitconfig
More file actions
35 lines (35 loc) · 847 Bytes
/
.gitconfig
File metadata and controls
35 lines (35 loc) · 847 Bytes
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
[user]
name = Shelby Skalnik
email = [email protected]
[core]
autocrlf = true
safecrlf = false
editor = vim
whitespace = cr-at-eol
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short --color --decorate --all
type = cat-file -t
dump = cat-file -p
tree = log --oneline --decorate --all --graph --color
pretty = log --pretty=format:'%C(yellow)%h %C(magenta)%ad %C(cyan)%an %C(auto)%d %Creset%s' --date=short --decorate --all --graph --color
dog = log --color --pretty=format:"%h%x09%an%x09%ad%x09%s"
d = difftool
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[rerere]
enabled = 1
[diff]
tool = vimdiff
[difftool]
prompt = false
[credential]
helper = cache --timeout=600