我在以下位置创建了一个函数.zshrc
:
function gc {
git commit -m $1
}
但是当我尝试调用这个函数时:
gc "some commit message"
我得到:
error: pathspec 'some commit message' did not match any file(s) known to git
我做错了什么?
我在以下位置创建了一个函数.zshrc
:
function gc {
git commit -m $1
}
但是当我尝试调用这个函数时:
gc "some commit message"
我得到:
error: pathspec 'some commit message' did not match any file(s) known to git
我做错了什么?