-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
46 lines (46 loc) · 977 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
43
44
45
46
[user]
email = divyekapoor@gmail.com
name = Divye Kapoor
[diff]
tool = vimdiff
[difftool]
prompt = false
[alias]
unstage = reset HEAD
co = checkout
br = branch
l = log --graph --pretty=format:\"%C(yellow)%h%Creset%C(cyan)%C(bold)%d%Creset %C(cyan)(%cr)%Creset %C(green)%ae%Creset %s\"
r = reset HEAD --hard
u = reset HEAD
c = commit
s = status
b = branch -vv
authors = shortlog -s -n --no-merges
d = difftool
undo = reset HEAD~ --soft
unsubmit = reset HEAD~ --hard
[credential]
helper = cache --timeout=2592000
[branch]
autosetuprebase = always
[aliases]
r = reset HEAD --hard
[push]
default = simple
[core]
abbrev = 5
[branch "master"]
rebase = true
mergeoptions = --ff-only
[merge]
ff = only
[receive]
denyCurrentBranch = updateInstead
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential