-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig
More file actions
35 lines (35 loc) · 755 Bytes
/
gitconfig
File metadata and controls
35 lines (35 loc) · 755 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
[user]
name = Evgeni Kolev
email = evgenysw@gmail.com
[diff]
tool = vimdiff
[difftool]
prompt = false
[merge]
tool = vimdiff
[push]
default = upstream
[core]
editor = vim
[alias]
st = status -sb
one = log --pretty=oneline --decorate -20
ahead-of-master = log --oneline --graph master..
ahead = log --pretty=oneline @{u}..
behind = log --pretty=oneline ..@{u}
tags = tag -l
branches = branch -a
graph = log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset- %<(75,trunc)%s (%cN, %cr) %Cred%d' --date-order
unstage = reset HEAD --
[color]
ui = auto
[github]
user = edkolev
[include]
path = ~/.gitconfig.local
[advice]
statusHints = false
[pull]
rebase = true
[init]
defaultBranch = main