-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
30 lines (30 loc) · 844 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
[user]
name = Adam McCullough
umail = merlinfmct87@gmail.com
email = merlinfmct87@gmail.com
[core]
editor = nvim
excludesfile = ~/.gitignore
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true
[color]
ui = true
[alias]
dft = difftool
dlog = "-c dif.external-difft log -p --ext-diff"
rms = "!f(){ git rm --cached \"$1\";rm -r \"$1\";git config -f .gitmodules --remove-section \"submodule.$1\";git config -f .git/config --remove-section \"submodule.$1\";git add .gitmodules; }; f"
st = status -sb
ready = rebase -i @{u}
lg = log --graph --pretty=format:'%Cred%h%Creset -%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
purr = pull --rebase
ctags = !.git/hooks/ctags
[push]
default = matching
[github]
user = TheWizardTower
[init]
templatedir = /home/merlin/.git_template