09 2023 档案
摘要:1.进入主仓库创建一个lib用于存放子仓库,在cd lib,使用命令git submodule add https://github.com/xxx.git 可以将远端仓库的xxx克隆到当前文件夹,它会在主仓库生成一个.gitmodules文件,文件中包含 [submodule "lib/xxx"]
阅读全文
摘要:在gitbash中使用以下命令设置代理,其中主要更改项为端口号,需要设置为你的代理软件的http端口 export HTTP_PROXY="http://localhost:8001" export HTTPS_PROXY="http://localhost:8001"
阅读全文