-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
75 lines (70 loc) · 1.62 KB
/
.gitconfig
File metadata and controls
75 lines (70 loc) · 1.62 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[user]
name = Aaron Russo
[alias]
bl = blame
br = branch
brs = branches
ci = commit
cs = commit -S
css = commit -S -s
co = checkout
cob = checkout -b
cu = cleanup
df = diff -b
dfc = diff --cached
dfm = diff master..
hist = log --pretty=format:\"%h %ad> %s%d [%an]\" --graph --date=short
gr = log --pretty=format:'%h : %s (%Cred%ae%Creset)' --graph
l = log --pretty=format:'[%Cred%h%Creset] %C(yellow)%s%C(reset) (%Cblueby %C(magenta)%ae %Cblue%ar%Creset)'
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
log = log -p
partial = add --patch
praise = blame
pp = pull --prune
m = merge --ff
st = status -s
staged = diff --staged
cached = diff --cached
sub = submodule
unstage = reset HEAD
ungit = rm --cached
up = branch --set-upstream
ts = tag -s
ta = tag
# This section requires git 1.7.10.2 or greater.
[include]
path = ~/.gitconfig.local
# just push to the local branch
[push]
default = current
# force fast-forward commits
[merge]
ff = only
[branch]
autosetuprebase = always
[github]
user = arusso
[core]
editor = /usr/bin/vim
excludesfile = ~/.gitignore
[pack]
threads = 0
[diff]
renamelimit = 0
[commit]
template = ~/.git-commit-template
[init]
defaultBranch = main
[pull]
rebase = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[checkout]
# when checking out a branch, default to tracking 'origin' by default
# if no remote is specified.
defaultRemote = origin
[advice]
skippedCherryPicks = false