2012-11-08 51 views
0

我試圖提交一個目錄中的所有文件,使用git commit -a「添加了一些更改」命令。在Mac上的Git:-a命令不起作用

我工作在Mac OS X,豹。

致命:

我提交命令後,終端與響應路徑與-a沒有意義。

可能有人請告訴我,如果有什麼事,我做錯了嗎?

+0

也許你答案是[here](http://stackoverflow.com/questions/11914919/git-fatal-error-path-with-a-does-not-make-sense)。 – Jason

回答

2

在混帳一個使用-m選項添加一條消息。 -a表示所有因而犯終端的所有修改過的文件

類型:

git add -a -m "Added some change" 

對於未來的問題,請參閱

git commit -h 

(... omitted output) 
-m, --message <message> 
         commit message 
(... omitted output) 
Commit contents options 
-a, --all    commit all changed files 
(... omitted output) 
+0

天才。謝謝! –

1

嘗試git的承諾-am 「一些信息」

+0

謝謝!我覺得這非常有幫助。 –