我想要一个git别名来提交一条消息,并在提交消息中自动填充分支名称。
输出示例:git commit -m "[EX-1234] This is the commit message"
我正在寻找一种仅输入终端git cm this is the commit message
的方法,它将执行输出示例。
我尝试过的事情
cm = "git commit -m \'[$(current_branch)] ${1}\'"
cm = "!f() { \
git commit -m '[$(current_branch)] $1'; \
}; f"
cm = '!sh -c '\''git commit --m "${1}"'\'' -'
以上示例不起作用
答案 0 :(得分:2)
使用$@
将所有参数传播到基础命令,如:
cm = "!f() { git commit -m "[$(current_branch)] $@"; }; f"