-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
40 lines (34 loc) · 1.5 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
#--------------------------------------------------------------------------------#
# .gitconfig
#--------------------------------------------------------------------------------#
# @author | Artem
# @email | artem.teleshev@gmail.com
# @site | http://phpsw.net
# @version | 1.0.0
#--------------------------------------------------------------------------------#
[core] # http://githowto.com/ ------------------------------------------- {{{ ---#
editor = vim
# AutoCRLF: https://help.github.com/articles/dealing-with-line-endings/
# autocrlf = false
#------------------------------------------------------------------------ }}} ---#
[color] # http://githowto.com/ ------------------------------------------ {{{ ---#
ui = true
#------------------------------------------------------------------------ }}} ---#
[alias] # http://githowto.com/aliases ----------------------------------- {{{ ---#
up = fetch -p --all
co = checkout
ci = commit
st = status
br = branch
brv = branch -avv
brd = branch -D
fp = format-patch --stdout -1
last = log -1 HEAD
hist = log --pretty=format:\"%h | %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
patch = format-patch --no-prefix --stdout -1
#------------------------------------------------------------------------ }}} ---#
[push] # http://githowto.com/ ------------------------------------------- {{{ ---#
default = simple
#------------------------------------------------------------------------ }}} ---#