Git Alias For Existing Command

[Solved] Git Alias For Existing Command | Webassembly - Code Explorer | yomemimo.com
Question : setting git aliases

Answered by : jan-dunder

git config --global alias.st status
git config --global alias.ci commit
git config --global alias.co checkout
git config --global alias.br branch

Source : https://courses.fit.cvut.cz/BI-GIT/environment.html | Last Update : Tue, 04 Oct 22

Question : git add alias

Answered by : cadoteu

git config --global alias.<alias> <command>

Source : https://gitexplorer.com/ | Last Update : Mon, 14 Mar 22

Question : GIT: Alias for existing command

Answered by : netrock

git config --global alias.co checkout
git config --global alias.st status
git config --global alias.br branch

Source : https://dev.to/snaka/10-things-i-always-setup-in-git-when-i-prepare-a-new-environment-d99 | Last Update : Mon, 22 Aug 22

Answers related to git alias for existing command

Code Explorer Popular Question For Webassembly