21 lines
384 B
Markdown
21 lines
384 B
Markdown
|
# 项目说明
|
||
|
初次clone可使用以下命令。
|
||
|
```bash
|
||
|
git clone https://xxxx/XXX-bundle.git
|
||
|
```
|
||
|
在git clone之后执行
|
||
|
```bash
|
||
|
git submodule update --init
|
||
|
|
||
|
```
|
||
|
|
||
|
```bash
|
||
|
git submodule foreach -q --recursive 'git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master)'
|
||
|
```
|
||
|
|
||
|
更新所有子项目:
|
||
|
```
|
||
|
git pull --rebase --recurse-submodules
|
||
|
```
|
||
|
|