-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
42 lines (37 loc) · 1003 Bytes
/
.gitconfig
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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Oryan Moshe
email = [email protected]
signingkey = 3B89F8C3
[alias]
aa = add --all
cb = checkout -b
gm = pull origin/master
st = status
ci = commit
co = checkout
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
ld = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short --graph
ls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
[color]
diff = auto
status = auto
branch = auto
pager = no
[core]
autocrlf = false
;editor = "nvim -u NORC"
editor = "nvim -u ~/.vim/configs/gitcommit.vim"
pager = "nvim -R"
[url "[email protected]:"]
insteadOf = https://github.com/
[commit]
template = /Users/oryan/.gitmessage
gpgsign = true
[gpg]
program = gpg
[init]
defaultBranch = master
[pull]
rebase = false