84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
git commit -m"XXXX"這樣資料夾裡面每個檔案都是一樣的備註,怎樣有比較好的方法為每個單獨的檔案添加備註?
$ git add text/text1.txt $ git commit -m "text1" $ git add text/text2.txt $ git commit -m "text2" $ git push origin master
單獨add 單獨commit測試可行。其他方法不清楚。但是外部資料夾的message會是最後一次commit提交的message。
只能獨立提交, 並加上註釋了
單獨add 單獨commit測試可行。其他方法不清楚。但是外部資料夾的message會是最後一次commit提交的message。
只能獨立提交, 並加上註釋了