我在.gitmodules
定義一個子模塊:如何才能訪問git子模塊的分支名稱?
[submodule "app/scripts/directives/foo"]
path = app/scripts/directives/foo
url = [email protected]:ross_rogers/foo.git
branch = my_branch
是否有訪問從含有庫這個分支參數編程的方式?
git submodule status
生產(不換行):
074d5c118eeae3bf622c6f878db96d8bf8b3bf47 \
app/scripts/directives/foo \
(heads/my_branch)
我在Windows CMD外殼和Linux的bash的雙重環境,所以我在尋找一種方式來獲得my_branch
程序,而無需使用UNIX cut
/awk
/et c。
這有效。謝謝jthill。 –