-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
44 lines (39 loc) · 929 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
[user]
name = Liz A. Denys
email = [email protected]
[alias]
ci = commit
co = checkout
st = status
br = branch
di = diff
dc = diff --cached
diffstat = diff --stat
ds = diff --stat
new = log --first-parent HEAD@{1}..HEAD
amend = commit --amend -C HEAD
rb = rebase
ri = -c core.editor=true rebase -i
ff = pull --ff-only
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
praise = blame
git = !git
cat = !cat @
[color]
diff = auto
status = auto
branch = auto
ui = auto
[svn]
rmdir = true
[core]
pager = less -+$LESS -FRX
[rebase]
autosquash = true
[pull]
rebase = false
[init]
defaultBranch = main
[push]
default = simple