-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
55 lines (51 loc) · 1.35 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
[credential]
helper = store
[url "https://moove-devopsbot@github.com"]
insteadOf = ssh://git@github.com
[user]
email = alexm@moove.ai
name = amerenda
signingkey = 0xB056FF8F5A307876
[alias]
st = status -sb
di = diff
A = add -A
ca = commit --amend -m
aa = add --update
cm = commit --amend -m
l = log --pretty=oneline --abbrev-commit
s = status
pish = push
commend = commit --amend --no-edit
pullff = pull --ff-only
update-submodules = submodule update --init --recursive
upgrade-submodules = submodule update --init --remote
grog = log --graph --abbrev-commit --decorate --all --format=format:\"%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(dim white) - %an%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(white)%s%C(reset)\"
[color]
ui = auto
[color "grep"]
match = cyan bold
selected = blue
context = normal
filename = magenta
linenumber = green
separator = yellow
function = blue
# Source for local modifications
[include]
path = ~/.gitconfig_local
[push]
default = simple
[gpg]
program = gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
excludesfile = /home/alex/.gitignore_global
[pull]
rebase = true
[rebase]
autosquash = true