Day 14: Git Zero To Hero ๐
Table of contents
Setting Alias
We cannot always type git status every time we need some short form such as git st so git provides us this functionality as well let's see how we can achieve it.
git config --global alias.st status
The above command will set a short form of status now by writing git st it will produce same output as git status . ๐
git st
Next Blog Teaser ๐
Non Linear Developement๐คฉ
Thanks for reading ๐๐งก
ย