git
陈龙辉Break
记录技术人生。
展开
-
安装NVM时curl: (56) OpenSSL SSL_read: Connection was reset, errno 10054
在windows电脑上安装nvm环境时;输入命令:curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash报以下错误:curl: (56) OpenSSL SSL_read: Connection was reset, errno 10054输入以下命令解决:git config http.postBuffer 524288000git config --global core.co原创 2022-06-13 10:58:17 · 897 阅读 · 0 评论 -
git的submodule使用方法
添加子项目:git submodule add https://github.com/xxx/sss.git当项目git clone之后初始化子项目仓库:git submodule update --init --recursive举个例子,比如我的子模块叫做a_core在使用的时候经常会遇到 ‘a_core’ already exists and is not a valid git repo这种情况,我们需要先删除干净错误的子模块数据:rm -rf .git/modules/a_core原创 2021-01-27 10:51:58 · 891 阅读 · 0 评论