我一直在致力於我的本地存儲庫,並且輸入了我的提交消息(git commit -a
)。一切都很好。git commit -m不工作
當時我想犯了一個單行的小變化提交一天結束,所以我用git commit -m "some message"
,得到了以下幾點:
On branch ChartFeature
Your branch is ahead of 'origin/ChartFeature' by 2 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
modified: SomeFolder/Scripts/app/SomeScript.js
no changes added to commit
我做了什麼錯?
如何讓git再次允許commit -m
?
腳註:與-m
失敗了幾次,看到沒有錯git log origin/ChartFeature..HEAD
後,我試圖git commit -a
像以前一樣和它的工作(如預期),但git commit -m
還沒有。
這是否工作?:git commit -am「某條消息」 – sheppe
正如消息所示 - 做** git push ** to your ori杜松子酒兩次。 –
在每次提交之前,你應該先發制人一個'git add .'。 –