suchen

Heim  >  Fragen und Antworten  >  Hauptteil

用git怎样给push到github的每个文件添加备注?

git commit -m"XXXX"这样文件夹里面每个文件都是一样的备注,怎样有比较好的方法给每个单独的文件添加备注?

为情所困为情所困2767 Tage vor890

Antworte allen(2)Ich werde antworten

  • 習慣沉默

    習慣沉默2017-05-02 09:49:52

    $ 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。

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:49:52

    只能独立提交, 并加上注释了

    Antwort
    0
  • StornierenAntwort