
git
zhongzunfa
Spring Cloud 中国社区创始人之一, 《重新定义 Spring Cloud 实战》作者, 主要研究 Spring Cloud, 微服务, 高可用架构,API网关, 参与社区多个开源项目的开发(sc-codegen, sc-dts 等),的核心开发者, 编程爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git 常用命名
1、获取指定分支的地址: git clone -b dev Git地址(https://github.com/zhongzunfa/zzf-spring-cloud-Finchley.git)原创 2018-07-23 09:55:50 · 309 阅读 · 0 评论 -
git 推送出现 "fatal: The remote end hung up unexpectedly" 解决方案
在使用git推送项目时候出现 “fatal: The remote end hung up unexpectedly”原因是推送的文件太大。解决方案:在克隆/创建版本库生成的 .git目录下面修改生成的config文件增加如下:[http]postBuffer = 524288000具体完成的如下图所示:重新推送即可。参考地址: https://blog.youkuaiyun.com/z...原创 2018-09-26 12:35:37 · 1465 阅读 · 0 评论 -
Git常用操作命令
远程仓库相关命令检出仓库:$ git clone git://github.com/jquery/jquery.git查看远程仓库:$ git remote -v添加远程仓库:$ git remote add [name] [url]删除远程仓库:$ git remote rm [name]修改远程仓库:$ git remote set-url --push[name][newUr...原创 2018-09-29 11:15:19 · 196 阅读 · 0 评论