-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
75 lines (67 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#[credential]
# helper = osxkeychain
#[core]
# excludesfile = /Users/tyler/.gitignore
#[merge]
# tool = vim
[user]
name = Tyler Sayles
email = [email protected]
[format]
numbered = auto
[color]
branch = yes
diff = auto
pager = yes
status = auto
#[color "branch"]
# current = green
# local = yellow
# remote = cyan
#
#[color "diff"]
# meta = yellow
# frag = magenta
# old = red
# new = green
#
#[color "status"]
# header = magenta
# added = yellow
# changed = green
# untracked = cyan
#[gui]
# fontui = -family terminus -size 9 -weight normal -slant roman -underline 0 -overstrike 0
# fontdiff = -family terminus -size 9 -weight normal -slant roman -underline 0 -overstrike 0
# editor = gvim
# [http]
# sslVerify=false
#
# [alias]
# b = branch
# ca = commit -a
# chgd = diff HEAD
# ci = commit
# co = checkout
# fpu = format-patch -s -p origin/master
# graphviz = "!f() { echo 'digraph git {' ; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f]\\+/\"&\"/g' ; echo '}'; }; f"
# m = checkout master
# mnc = merge --no-commit
# olg = log --abbrev-commit --abbrev=6 --pretty=oneline
# one = "!sh -c 'git show -s --pretty=\"tformat:%h (%s, %ai\" \"$@\" | sed -e \"s/ [012][0-9]:[0-5][0-9]:[0-5][0-9] [-+][0-9][0-9][0-9][0-9]$/)/\"' -"
# out = !git push --dry-run
# purge = !git checkout $(git rev-parse --show-cdup) && git clean -xdf
# serve = !sh -c 'git daemon --reuseaddr --verbose \"$@\" --base-path=. --export-all ./.git' sh
# stgd = diff --cached
# st = status
# tagme = !sh -c '[ -z "$1" ] && exit 1 || git tag -s v\"$1\" -m \"release \"$1\"\"' sh
# tush = push --tags
# who = "!sh -c 'git log -1 --pretty=\"format:%an <%ae>\" --author=\"$1\"' -"
#
#[sendemail]
# aliasesfile = /home/grml/.gitaliases
# aliasfiletype = mutt
# chainreplyto = false
# smtpserver = /usr/bin/msmtp
## END OF FILE #################################################################
# vim:tabstop=4 autoindent filetype=gitconfig expandtab