-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
30 lines (25 loc) · 863 Bytes
/
.gitconfig
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
[user]
email = [email protected]
name = MalsR
[alias]
glog = log --all --oneline --graph --decorate
bs = branch -a
st = status
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
glogs = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
traffic = !git log --all -M -C --name-only --format='format:' "$@" | sort | grep -v '^$' | uniq -c | sort | awk 'BEGIN {print "count,file"} {print $1 "," $2}'
who = shortlog -s -n --no-merges
[color]
ui = true
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[http]
sslverify = false
[core]
editor = vim