-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig.symlink
45 lines (41 loc) · 1 KB
/
gitconfig.symlink
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
[core]
excludesfile = ~/.gitignore
editor = /usr/local/bin/vim
[hub]
protocol = https
[user]
name = Akshay Karle
email = [email protected]
[alias]
st=status
di=diff -M --submodule
dc=diff --cached -M --submodule
co=checkout
l=log --pretty=format:'%Cblue %d %Creset %cd %Cred %h %Cgreen %aN %Creset %s' --color --graph --all --date=short
br=branch
supdate = submodule update --remote --merge
gone = ! "git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | awk '$2 == \"[gone]\" {print $1}' | xargs -r git branch -D"
[color]
ui = true
[push]
default = current
[merge]
defaultToUpstream = true
[help]
autocorrect = 3
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[magithub]
online = false
[magithub "status"]
includeStatusHeader = false
includePullRequestsSection = false
includeIssuesSection = false
[pull]
ff = only
[url "[email protected]:"]
insteadOf = https://github.com/
[init]
defaultBranch = main