public
Description: My config files (aka dotfiles)
Homepage:
Clone URL: git://github.com/jferris/config_files.git
config_files / gitconfig
100644 21 lines (18 sloc) 0.304 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ADD LOCAL CONFIGURATION HERE
 
 
# DO NOT EDIT BELOW THIS LINE
[color]
diff = auto
status = auto
branch = auto
[core]
excludesfile = ~/.gitignore
[alias]
  c = commit -m
  a = add
  di = diff
  dic = diff --cached
  pl = pull
  ps = push
  plre = pull --rebase
  st = status
  out = log origin..HEAD