Skip to content

Instantly share code, notes, and snippets.

@gbirke
Last active September 26, 2015 10:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbirke/1082842 to your computer and use it in GitHub Desktop.
Save gbirke/1082842 to your computer and use it in GitHub Desktop.
My default .gitconfig
# You can copy this file to your computer with the following command:
# wget https://gist.github.com/raw/1082842/.gitconfig
[user]
name = Gabriel Birke
email = gb@birke-software.de
[core]
quotepath = false
[color]
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
unstage = reset HEAD --
unstash = stash pop
publish = push -u origin HEAD
[push]
default = simple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment