搜尋

首頁  >  問答  >  主體

git - 如何提交帶有Submodule的專案?

我的專案中引用了我自己寫的一個插件,在github的windows客戶端提交時提示:

請問我該怎麼做才能提交呢?

phpcn_u1582phpcn_u15822792 天前668

全部回覆(1)我來回復

  • 巴扎黑

    巴扎黑2017-05-02 09:42:41

    方法一
    刪除你的VistorUserCenter目錄
    進入專案根目錄
    運行git submodule add 你的vistor插件的git位址 src/zb_users/plugin/VistorUserCenter
    方法二
    刪除VistorUserCenter

    出現這種情況的原因是沒有正確添加submodule吧,

    項目根目錄下是否有.gitmodules檔?裡面大致內容應該是這樣的:

    [submodule "src/zb_users/plugin/VistorUserCenter"]
        path = src/zb_users/plugin/VistorUserCenter
        url = https://github.com/xxx/VistorUserCenter

    還有src/zb_users/plugin/VistorUserCenter目錄下應該沒有.git目錄

    回覆
    0
  • 取消回覆