Skip to content

Instantly share code, notes, and snippets.

@markalanevans
Created October 6, 2011 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markalanevans/1266359 to your computer and use it in GitHub Desktop.
Save markalanevans/1266359 to your computer and use it in GitHub Desktop.
Git Config
[user]
name = Mark Evans
email = my@emailaddress.com
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
who = shortlog -s --
up = pull --rebase
sync = !git up && git push
stuff = !git add -A && git ci -a
shove = !git stuff && git sync
[push]
default = matching
[core]
quotepath = false
@AsMeBoss
Copy link

    [user]
	name = Mark Evans
	email = my@emailaddress.com
[color]
	branch = auto
	diff = auto
	interactive = auto
	status = auto
	ui = auto
[color "branch"]
	current = yellow reverse
	local = yellow
	remote = green
[color "diff"]
	meta = yellow bold
	frag = magenta bold
	old = red bold
	new = green bold
[color "status"]
	added = yellow
	changed = green
	untracked = track
[alias]
	st = status
	ci = commit
	br = branch
	co = checkout
	df = diff
	lg = log 
	who = shortlog 
	up = pull 
	sync = sync
[push]
	default 
[core]
	quotepath = true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment