-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
49 lines (49 loc) · 958 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[user]
name = Luiz Rocha
email = [email protected]
[github]
user = lsdr
[color]
branch = auto
status = auto
diff = auto
interactive = true
pager = true
ui = true
[core]
excludesfile = ~/.gitignore
autocrlf = input
pager = less -FX
[push]
default = current
autoSetupRemote = true
[alias]
b = branch -a
ci = commit
cim = commit -m
co = checkout
tl = log --oneline --graph
st = status -sb
sth = stash
los = log --stat --no-merges --pretty=oneline
lop = log -p
llog = log --oneline --decorate --max-count=20
full-log = shortlog -n
stats = shortlog -s -n --no-merges
tags = tag -l -n15
last = cat-file commit HEAD
count = !git log --author='Luiz Rocha' --oneline --no-merges | wc -l | awk '{print $1}'
uncommit = reset --soft HEAD^
remup = remote update
[log]
date = rfc
[help]
autocorrect = 1
[fetch]
prune = true
[pull]
rebase = false
[init]
defaultBranch = main
[status]
showStash = true