D:\msys64D:\msys64\home\MyUserName\.bashrc and addgs='git status -s'
gaa='git add .'
gcm='git commit -m'
gpom='git push origin master'
gs -bash: gs: command not found
gs got translated to git status -s
How could I fix it?
It should be alias gs='git status -s'. This is not a mintty question. Please learn about using shell (bash) before.
You could also type $gs at the prompt to execute the command defined in the variable gs.
Sorry, It's my fault :(
thank you very much for helping newbie like me.
Most helpful comment
You could also type $gs at the prompt to execute the command defined in the variable gs.