quanttide-data/
├── docs/ # 文档类项目
│ ├── tutorial/ # 数据工程教程
│ ├── handbook/ # 数据工程手册
│ └── specification/ # 数据工程标准
└── src/ # 源代码类项目
└── qtcloud-data/ # 数据云
- docs/tutorial - 数据工程教程
- docs/handbook - 数据工程手册
- docs/specification - 数据工程标准
- src/qtcloud-data - 数据云
克隆此仓库时会自动包含所有子模块:
git clone --recurse-submodules https://github.com/quanttide/quanttide-data.git如果已经克隆了仓库,可以单独获取子模块:
git submodule update --init --recursive更新所有子模块到最新版本:
git submodule update --remote更新特定子模块:
cd <submodule-path>
git pull origin main
cd ..
git add <submodule-path>
git commit -m "Update <submodule-path>"