随笔分类 -  git

摘要:git commit amend 可以对上一次的提交做修改 阅读全文
posted @ 2018-01-21 23:45 Thomas_188 阅读(92) 评论(0) 推荐(0)
摘要:常用命令 1. 打tag git tag a v1.1 m '服务器开子进程提供服务,处理多客户端连接' 2.tag推到远程 git push origin v1.1 阅读全文
posted @ 2017-09-27 16:54 Thomas_188 阅读(81) 评论(0) 推荐(0)
摘要:1.场景 由于我换了一台电脑,为了能访问远程仓库,我就把原来电脑上的私钥和config文件拷贝过来 2.出现问题及解决方案 git clone server:xxx_service_express 报错: 因为我给了config 777权限,改成600就ok了(sudo chmod 600 conf 阅读全文
posted @ 2017-07-21 11:19 Thomas_188 阅读(1314) 评论(0) 推荐(0)
摘要:本人计划写一些关于《git内部原理》的文章 计划每周一篇 阅读全文
posted @ 2017-05-29 23:28 Thomas_188 阅读(110) 评论(0) 推荐(0)
摘要:1、删除分支 git branch d branch_name error: The branch 'branch_name' is not fully merged. If you are sure you want to delete it, run 'git branch D branch_n 阅读全文
posted @ 2016-08-25 11:14 Thomas_188 阅读(214) 评论(0) 推荐(0)
摘要:1.修改命令 git remote origin set url [url] 2.先删后加 git remote rm origin git remote add origin [url] 3.直接修改config文件 git 远程仓库管理 4.You asked me to pull withou 阅读全文
posted @ 2016-04-29 22:37 Thomas_188 阅读(153) 评论(0) 推荐(0)