# proxy **Repository Path**: safei/proxy ## Basic Information - **Project Name**: proxy - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-07-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # proxy ## submodule 用法 ### 1.增加module ```Shell git submodule add git@github.com:jjz/pod-library.git pod-library ``` ### 2.状态查看 ```Shell git status ``` ### 3.更新同步最新代码 ``` 两种方式: 1.在父项目的目录下直接运行 git submodule foreach git pull 2.在Submodule的目录下面更新 cd pod-library git pull ``` ### 4.下载的工程带有submodule ```Shell git submodule update --init --recursive ```