-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
53 lines (53 loc) · 1.15 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
[user]
name = Ben Batha
email = [email protected]
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
co = "checkout"
delete-merged-branches = "!git co master && git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"
branch-name = "!git rev-parse --abbrev-ref HEAD"
pub = "!git push -u origin $(git branch-name)"
[diff]
tool = vimdiff
compactionHeuristic = true
external = difft
[difftool]
prompt = false
[color]
ui = true
status = auto
branch = auto
interactive = auto
diff = auto
[push]
default = simple
followTags = true
followTag = true
autoSetupRemote = true
[merge]
conflictstyle = diff3
[apply]
whitespace = warn
[core]
editor = nvim
excludesfile = /home/user/bbatha/.gitignore_global
[branch]
autosetuprebase = always
[http]
sslVerify = true
[pull]
default = simple
rebase = true
[rebase]
autosquash = true
autoStash = true
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[submodule]
fetchJobs = 8
[url "[email protected]:"]
insteadOf = https://github.com/
[credential]
helper = osxkeychain