我的悲伤还来不及出发,就已经到站下车。——《第七天》
常用命令如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| git submodule init
git submodule update
git submodule update --init --recursive
git submodule update --remote
git submodule update --remote --merge
git submodule add <repository_url> [<path>]
git clone --recurse-submodules <repository_url>
git submodule deinit -f <path_to_submodule> rm -rf .git/modules/<path_to_submodule> git rm -f <path_to_submodule>
git submodule status
git config --file .gitmodules --get-regexp path
git submodule set-url <path_to_submodule> <new_repository_url>
git checkout -b <new_branch> git submodule update --remote --merge
git submodule foreach git pull origin master
git submodule sync
cd <path_to_submodule> git checkout <commit_hash>
|
例如stream-query
里