-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
54 lines (44 loc) · 999 Bytes
/
gitconfig
File metadata and controls
54 lines (44 loc) · 999 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[hub]
protocol = https
[credential]
helper = /opt/boxen/bin/boxen-git-credential
[core]
editor = vim
excludesfile = /opt/boxen/config/git/gitignore
[user]
name = Kyle Snell
email = kylessnell@gmail.com
[push]
default = simple
[alias]
lol = log --graph --decorate --pretty=oneline --abbrev-commit
co = checkout
br = branch
ign = ls-files -o -i --exclude-standard
dc = diff --cached
df = diff
st = status
ci = commit
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = ls-files
[branch]
autosetuprebase = always
[ui]
color = auto
[color "diff"]
excludesfile = /opt/boxen/config/git/gitignore
frag = magenta bold
meta = yellow bold
new = green bold
old = red bold
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[pager]
branch = false