2011-07-26 89 views
-6

Git,當我們鍵入例如:Git的 - 這是什麼意思-m

$ git commit -m "xyz" 

是什麼-m意思?

謝謝。

+0

這是提交消息的標誌。 –

+2

-m是描述您提交的消息 –

+2

嘗試'git help commit',然後*閱讀*文檔。 –

回答

4

-m表示消息 - 即,提交消息,每個人都會看到附加到您的提交。

+2

喂一個人一條魚,他會吃一天。教一個人釣魚,他會一輩子吃。 – chharvey

3

git commit --help

-m <msg>, --message=<msg> 
      Use the given <msg> as the commit message. 

摘錄對於每一個混帳命令/動作,你可以鍵入git <command> --help得到它的文檔。

1

這是用來描述你的提交,你在這個提交中做了什麼。
您可以通過man git-commit檢查手冊頁,這會告訴您更多信息。