This repository was archived by the owner on Jan 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
88 lines (84 loc) · 1.98 KB
/
.gitconfig
File metadata and controls
88 lines (84 loc) · 1.98 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
[user]
name = Philip Weaver
email = philip.weaver@gmail.com
[alias]
cont = rebase --continue
abort = rebase --abort
br = branch
b = branch
ci = commit
cia = commit -a
cim = commit -m
ciam = commit -a -m
co = checkout
d = diff -w
diffi = diff --color-words
diffx = diff -w --color-words
up = pull --rebase
ff = pull --ff-only
f = merge --ff-only
st = status
# d = diff --name-status
d = diff --stat
g = log --graph --decorate
l = log --graph --decorate --pretty=oneline --abbrev-commit --abbrev=8
la = log --graph --decorate --pretty=oneline --abbrev-commit --abbrev=8 --all
local = log --oneline origin..HEAD
ll = log --graph --pretty=format:'%C(yellow)%h%C(red bold)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit --abbrev=8 --date=relative
lal = log --graph --pretty=format:'%C(yellow)%h%C(red bold)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit --abbrev=8 --date=relative --all
unstage = reset HEAD --
last = log -1 HEAD
# svn stuff
dc = svn dcommit
sc = svn dcommit
# up = svn rebase
# up2 = !git stash && git svn rebase && git stash apply
# sc2 = !git stash && git sc && git stash apply
# up = !git pull && git submodule update
[gc]
auto = 6700 # default is 6700
autopacklimit = 50 # default is 50
[format]
pretty = medium # default is medium
[log]
date = local
[color]
ui = true
[receive]
denyCurrentBranch = refuse
[push]
default = tracking
#[color "branch"]
# current = yellow reverse
# local = yellow
# remote = green
#[color "diff"]
# plain = white
# meta = yellow bold
# frag = magenta bold
# old = red bold
# new = green bold
#[color "status"]
# header = white
# added = yellow
# changed = green
# untracked = cyan
[column]
branch = auto
[merge]
defaultToUpstream = true
[svn]
rmdir = true
[github]
user = *
token = *
[core]
safecrlf = true
autocrlf = false
eol = lf
excludesfile = ~/commonrc/gitignore
preloadindex = true
[reviewboard]
url = http://reviews.janrain.com
# [commit]
# template = ~/commit-template.txt