-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
36 lines (36 loc) · 1.2 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
[user]
email = [email protected]
name = Payton Swick
[credential]
username = sirbrillig
[color]
ui = true
[push]
default = simple
[alias]
pick = cherry-pick
cm = commit
co = checkout
st = status
pushnew = push -u origin HEAD
cpull = "!f() { git checkout $1 && git pull; }; f"
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
bnew = checkout -b
recent = branch --sort=-committerdate
backup-create = "!f() { git branch -f backup-$(git rev-parse --abbrev-ref HEAD) && echo 'Backup created. Use git backup-restore to restore.'; }; f"
backup-restore = "!f() { echo 'Are you sure you want to overwrite the current branch with the latest backup? This cannot be undone!'; select result in Yes No; do [[ $result == "Yes" ]] && git reset --hard backup-$(git rev-parse --abbrev-ref HEAD) && echo 'Backup restored.'; break; done; }; f"
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[merge]
tool = nvim-only
[mergetool "nvim-only"]
cmd = nvim $MERGED
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[pull]
rebase = false
[init]
defaultBranch = trunk