Skip to content

Instantly share code, notes, and snippets.

@simonmulser
Last active November 14, 2018 09:40
Show Gist options
  • Save simonmulser/b97a1196f8d27ba2a211 to your computer and use it in GitHub Desktop.
Save simonmulser/b97a1196f8d27ba2a211 to your computer and use it in GitHub Desktop.
git configuration
[alias]
br = branch
st = status
sts = status --short
co = checkout
ci = commit
unstage = reset HEAD --
uncommit = reset --soft HEAD^
slog = log --pretty=oneline --abbrev-commit
graph = log --all --oneline --graph --decorate
[core]
autocrlf = input
whitespace = cr-at-eol
[user]
name = Simon Mulser
email = simonmulser@gmail.com
[push]
default = simple
[http]
sslVerify = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment