2012年12月16日 星期日

git submodule

$ cd my_project/

// 新增 submodule
$ git submodule add git@github.com:xxxx/module_1.git lib/module_1  // $ git submodule REPOSITORY PATH
$ git status  // 會多一個檔案及模組的資料夾
$ git add .gitmodules lib/module_1
$ git add .gitmodules lib/module_1/ 在最後不要加了 /,會 commit 到模組資料夾裡的檔案
$ git commit -a -m "Add submodule into version control"
$ git push

// 將模組資訊加入 .git/config
$ git submodule init

沒有留言:

張貼留言