Skip to content

Instantly share code, notes, and snippets.

@oliverspryn
Last active February 18, 2022 15:56
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 oliverspryn/cad7e18483099cfc3c6aafbd0f1cb780 to your computer and use it in GitHub Desktop.
Save oliverspryn/cad7e18483099cfc3c6aafbd0f1cb780 to your computer and use it in GitHub Desktop.
Two Git aliases in action showing the commit and status shortcuts
git c "Added a new file"
git s
# To use, add this to your ~/.gitconfig file
[alias]
c = !git add -A && git commit -m
s = status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment