forked from alexpotter/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
31 lines (30 loc) · 733 Bytes
/
gitconfig
File metadata and controls
31 lines (30 loc) · 733 Bytes
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
[user]
name = Luke Austin
email = lukeaustin8@gmail.com
[core]
excludesfile = /Users/radweb_mini/.gitignore
quotepath = false
autocrlf = input
[mergetool]
keepBackup = true
[color]
ui = true
[alias]
root = !pwd -P
# Fancy logging.
# h = head
# hp = head with patch
# r = recent commits, only current branch
# ra = recent commits, all reachable refs
# l = all commits, only current branch
# la = all commits, all reachable refs
head = !git l -1
h = !git head
hp = "!. ~/.bin/dotfiles/githelpers && show_git_head"
r = !git l -30
ra = !git r --all
l = "!. ~/.bin/dotfiles/githelpers && pretty_git_log"
la = !git l --all
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f