Skip to content

Instantly share code, notes, and snippets.

@teeparham
Created June 22, 2010 19:40
Show Gist options
  • Save teeparham/448953 to your computer and use it in GitHub Desktop.
Save teeparham/448953 to your computer and use it in GitHub Desktop.
git config
[color]
diff = auto
branch = auto
status = auto
ui = auto
[alias]
co = checkout
ci = commit -am
st = status
br = branch
sb = show-branch
df = diff --ignore-space-change
pushm = push origin master
pullm = pull origin master
pulld = pull origin dev
pushd = push origin dev
aa = add -A
[user]
name = Tee Parham
email = [email protected]
[core]
excludesfile = /home/tee/.gitignore
whitespace = -trailing-space
@rattlion
Copy link

I use these as well. Check them out.

[color]
diff = auto
branch = auto
status = auto
ui = auto
[alias]
diff = diff --ignore-space-change
lol = log --graph --decorate --abbrev-commit
lola = log --graph --decorate --abbrev-commit --all
ls = ls-files
[diff]
tool = opendiff
[difftool]
prompt = false

@teeparham
Copy link
Author

Thanks Matt!

@rattlion
Copy link

hey, sorry about the formatting for the aliases, but i think you'll get the gist

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