
git
不屑哥
这个作者很懒,什么都没留下…
展开
-
git创建项目后使用本地仓库关联命令
Git 全局设置:git config --global user.name "zhang san"git config --global user.email "xxx@qq.com"创建 git 仓库:mkdir wms-webcd wms-webgit inittouch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://gitee.com/MrMao/w原创 2021-01-27 16:53:36 · 133 阅读 · 0 评论 -
git相关命令
设置全局用户名git config --global user.name "zhangsan"设置本地用户名git config user.name "zhangsan"设置全局用户邮箱git config --global user.email "张三@qq.com"设置本地用户邮箱git config user.email "张三@qq.com"设置客户...原创 2019-12-17 15:33:07 · 181 阅读 · 0 评论 -
gitlab提交代码提示The remote end hung up unexpectedly
转:https://www.jianshu.com/p/3b86486bc6cd报错提示error: RPC failed; result=22, HTTP code = 413fatal: The remote end hung up unexpectedlyfatal: The remote end hung up unexpectedly反正问题的关键就是gitlab限制了上传的...原创 2019-12-15 18:05:25 · 2027 阅读 · 0 评论