This question already has an answer here:
- How do I alias commands in git? 20 answers
git alias command is not working
I tried
git alias'cm' commit -m
but this is not working for me.
This question already has an answer here:
git alias command is not working
I tried
git alias'cm' commit -m
but this is not working for me.
#set the alias
git config --global alias.cm "commit -m"
git cm "message"