-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
34 lines (34 loc) · 805 Bytes
/
gitconfig
File metadata and controls
34 lines (34 loc) · 805 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
[user]
name = Thilo Rusche
email = thilorusche@gmail.com
[core]
editor = vim
excludesfile = /home/trusche/.gitignore
[color]
ui = true
[push]
default = current
[alias]
a = add
au = add -u
b = branch
cf = diff-tree --no-commit-id --name-only -r
co = checkout
cp = cherry-pick
cpc = cherry-pick --continue
lb = branch --sort=-committerdate
lg = log --graph --pretty=format:'%Cred%h%Creset - %Cgreen(%ci)%Creset %s %C(bold blue)<%an>%Creset %C(yellow)%d%Creset' --abbrev-commit --date=iso
m = merge --ff-only
p = pull --rebase
r = rebase -i
rc = rebase --continue
s = status
sum = log --pretty=format:'%Cred%h %C(blue)<%an> %C(white)%s' --abbrev-commit
[github]
user = trusche
[credential]
helper = osxkeychain
[init]
defaultBranch = main
[fetch]
prune = true