-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
37 lines (37 loc) · 890 Bytes
/
dot_gitconfig
File metadata and controls
37 lines (37 loc) · 890 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
[user]
email = matas234@gmail.com
name = NullSense
signingkey = CB5590199041EB914A80D18196154ED6A2543B48
[credential]
helper = store
[core]
excludesfile = /home/ongo/.gitignore
pager = delta --dark
[interactive]
diffFilter = delta --color-only
[delta]
features = line-numbers decorations
syntax-theme = gruvbox-dark
[delta "decorations"]
file-style = bold blue ul
[rebase]
autosquash = true
[commit]
verbose = true
# gpgsign = true # Uncomment after importing GPG key
[init]
defaultBranch = master
[pull]
rebase = false
[alias]
co = checkout
br = branch
ci = commit
st = status
unstage = reset HEAD --
last = log -1 HEAD
visual = log --graph --oneline --all
amend = commit --amend --no-edit
pushf = push --force-with-lease
undo = reset --soft HEAD^
aliases = config --get-regexp alias