-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_gitconfig
More file actions
45 lines (38 loc) · 1.02 KB
/
_gitconfig
File metadata and controls
45 lines (38 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
39
40
41
42
43
44
45
[user]
name = Kjetil Torgrim Homme
email = kjetil.homme@redpill-linpro.com
[github]
user = kjetilho
token = c70dcaa6951ecd73af11897d05001394
[push]
default = current
[alias]
clog = log --graph --oneline --abbrev-commit --all --decorate --color
logv = log --name-status --find-renames
lg = log -p
lol = log --graph --abbrev-commit --date=relative --decorate
lola = log --graph --abbrev-commit --date=relative --decorate --all
patch = !git --no-pager diff --no-color
co = checkout
cherrypick = cherry-pick
[tig "bind"]
# alternative to using PageUp or "-".
generic = <Backspace> scroll-page-up
[core]
excludesfile = /home/kjetilho/.gitignore_global
pager = less -F
whitespace = trailing-space, space-before-tab, blank-at-eof
[apply]
whitespace = warn
[pager]
diff = diff-so-fancy | less -RFX
[diff-so-fancy]
stripLeadingSymbols = true
[diff "gpg"]
textconv = gpg --quiet --decrypt --use-agent
[diff]
noprefix = true
[pull]
rebase = true
[init]
defaultBranch = main