-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
39 lines (39 loc) · 880 Bytes
/
gitconfig
File metadata and controls
39 lines (39 loc) · 880 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
[user]
name = Giuseppe Capizzi
email = g.capizzi@gmail.com
[core]
excludesfile = ~/.gitignore
pager = delta
[alias]
st = status
aa = add --all
ap = add --patch
ci = commit
ca = commit --amend --no-edit
br = branch
sw = switch
sc = switch --create
rr = restore
fp = fetch --all --prune
pf = push --force-with-lease
df = diff
dc = diff --cached
lg = log --graph --topo-order --abbrev-commit --date=short --decorate --boundary --pretty=format:'%Cgreen%ad %Cred%h%Creset -%C(yellow)%d%Creset %s %Cblue[%cn]%Creset %Cblue%G?%Creset' ; https://github.com/GitAlias/gitalias
[credential]
helper = osxkeychain
[pull]
rebase = true
[status]
short = 1
branch = 1
[merge]
conflictstyle = diff3
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
true-color = always
diff-so-fancy = true
[init]
defaultBranch = main
[rerere]
enabled = true