-
Notifications
You must be signed in to change notification settings - Fork 1
/
dot-gitconfig
51 lines (51 loc) · 1.29 KB
/
dot-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
[user]
name = Akash Agrawal
email = [email protected]
signingkey = BACB4F00A12E5E57
[push]
default = simple
[alias]
co = checkout
ci = commit
cim = commit -m
st = status
br = branch
brd = branch -d
dif = diff
unwatch = update-index --assume-unchanged
rewatch = update-index --no-assume-unchanged
hist = log --pretty=format:"%C(yellow)%h\\ %Cgreen%d\\ %Creset%s\\ %Cred[%aN\\ -\\ %ad]%Creset" --date=short --graph --all
graph = log --pretty=format:"%C(blue)%d%Creset" --graph --simplify-by-decoration --all --dense
current = "!git rev-parse --abbrev-ref HEAD"
pub = "!git push -u origin $(git current)"
publish = "!git pub"
prune-local = "!git-prune-local"
shoot = push origin --delete
[color]
ui = true
[core]
editor = nvim
autocrlf = false
safecrlf = true
filemode = false
[credential]
helper = cache --timeout=36000
helper =
helper = /usr/local/bin/git-credential-manager
helper = /usr/local/share/gcm-core/git-credential-manager
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[pull]
ff = only
[gitlab]
user = akash_agrawal
[github]
user = akagr
[credential "https://dev.azure.com"]
useHttpPath = true
[commit]
gpgSign = true
[fetch]
prune = true