Answers for "git shortcut"

1

git shortcuts

# add shortcuts for common git commands
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
Posted by: Guest on May-23-2021
2

git shortcut

$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st status
Posted by: Guest on July-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language