다음 위치에 함수를 만들었습니다 .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
내가 뭘 잘못했나요?