author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Wed, 25 Apr 2012 19:42:00 +0300 | |
changeset 434 | c66a176a8af9 |
parent 194 | fd20e9da8dac |
child 456 | dc10370dab78 |
permissions | -rw-r--r-- |
116 | 1 |
# -*- mode: conf -*- |
2 |
||
3 |
[user] |
|
4 |
name = Oleksandr Gavenko |
|
5 |
email = gavenkoa@gmail.com |
|
6 |
||
7 |
[alias] |
|
8 |
br = branch |
|
9 |
ci = commit -a |
|
10 |
co = checkout |
|
11 |
cp = cherry-pick |
|
12 |
graph = log --graph --oneline --decorate |
|
13 |
info = config --list |
|
14 |
pop = !git stash apply && git stash clear |
|
15 |
sb = show-branch |
|
16 |
st = status |
|
17 |
staged = diff --cached |
|
18 |
summary = log --oneline |
|
19 |
tags = tag -n1 -l |
|
20 |
w = whatchanged |
|
21 |
||
22 |
[core] |
|
23 |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol |
|
24 |
excludesfile = ~/.gitignore |
|
25 |
||
26 |
[apply] |
|
27 |
# fix/strip/nowarn |
|
28 |
# whitespace = strip |
|
29 |
||
30 |
[diff] |
|
31 |
color = auto |
|
194
fd20e9da8dac
Add more colors to output.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
116
diff
changeset
|
32 |
status = auto |
fd20e9da8dac
Add more colors to output.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
116
diff
changeset
|
33 |
branch = auto |
116 | 34 |
# Makes the diff much shorter when moving or copying files. |
35 |
rename = copy |
|
36 |
||
37 |
# The number of files to consider when performing the copy/rename |
|
38 |
# detection; equivalent to the git diff option -l. |
|
39 |
# renamelimit = 0 |
|
40 |
||
41 |
[pager] |
|
42 |
color = true |
|
43 |
||
44 |
[status] |
|
45 |
color = auto |
|
46 |
||
47 |
[color] |
|
48 |
branch = auto |
|
49 |
diff = auto |
|
50 |
interactive = auto |
|
51 |
status = auto |
|
52 |
||
53 |
pager = true |
|
54 |
ui = true |
|
55 |