1
我試圖創建一個別名,它是git commit -m "commit message"
的簡寫。如何在創建函數時在bash中的雙引號之間傳遞句子
我想要做的是在~/.aliases
下面創建一個函數。
gc()
{
git commit -m ""[email protected]""
}
這給我此錯誤消息時,我用這個「別名」 gc install project
error: pathspec 'install' did not match any file(s) known to git.
error: pathspec 'project' did not match any file(s) known to git.
,而我希望它是git commit -m "install project"
我怎麼能因爲我想使這個別名工作它來?