Skip to content

Instantly share code, notes, and snippets.

@pekhota
Created October 31, 2023 10:47
Show Gist options
  • Save pekhota/f682f33c20ffb7b805056bc35e42da7b to your computer and use it in GitHub Desktop.
Save pekhota/f682f33c20ffb7b805056bc35e42da7b to your computer and use it in GitHub Desktop.
One liner to setup git aliases
# Basic Git Aliases
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.lg "log --oneline --decorate --all --graph"
@pekhota
Copy link
Author

pekhota commented Oct 31, 2023

curl -s https://gist.githubusercontent.com/pekhota/f682f33c20ffb7b805056bc35e42da7b/raw/ | bash

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