x

Programs, configuration and documentation that don't fit anywhere else
Log | Files | Refs | README | LICENSE

git (300B)


      1 [core]
      2 	pager = cat
      3 [user]
      4 	name = Oliver Lowe
      5 	email = o@olowe.co
      6 
      7 [alias]
      8 	co = checkout
      9 	st = status -s
     10 	ci = commit
     11 	up = pull -r
     12 	b = branch
     13 	fp = format-patch
     14 [fetch]
     15 	prune = true
     16 	pruneTags = true
     17 	all = true
     18 [push]
     19 	autoSetupRemote = true
     20 [diff]
     21 	noprefix = true
     22 [rebase]
     23 	updateRefs = true