【发布时间】:2016-01-14 20:10:17
【问题描述】:
git 别名命令不起作用
我试过了
git alias'cm' commit -m
但这对我不起作用。
【问题讨论】:
-
这篇文章很好地回答了你的问题。 stackoverflow.com/questions/2553786/…
git 别名命令不起作用
我试过了
git alias'cm' commit -m
但这对我不起作用。
【问题讨论】:
#set the alias
git config --global alias.cm "commit -m"
git cm "message"
【讨论】: