Skip to content

Instantly share code, notes, and snippets.

@devynspencer
Created December 20, 2019 17:33
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 devynspencer/2d440667d67b3e61f188676558c5a02e to your computer and use it in GitHub Desktop.
Save devynspencer/2d440667d67b3e61f188676558c5a02e to your computer and use it in GitHub Desktop.
Basic gitconfig with useful aliases
# This is Git's per-user configuration file.
[user]
name = Devyn Spencer
email = devynspencer@users.noreply.github.com
[alias]
co = checkout
br = branch
ci = commit
st = status
ll = log
rs = reset
last = log -1 HEAD --stat
unstage = reset HEAD --
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment