-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
38 lines (37 loc) · 1.02 KB
/
gitconfig
File metadata and controls
38 lines (37 loc) · 1.02 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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = LinasBeres
email = beres.linas@gmail.com
[alias]
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[bash]
showInformativeStatus = true
[alias]
pullall = "!f(){ git pull \"$@\" && git submodule update --init --recursive; }; f"
[core]
excludesFile = ~/.gitignore
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
light = false # set to true if you're in a light terminal theme