git
文章平均质量分 63
yangyanjava
这个作者很懒,什么都没留下…
展开
-
git因为说明过长提交不上去时,
1.执行 git commit --amend -m"说明信息"就可以把以前的说明信息覆盖掉原创 2015-12-17 17:14:28 · 1135 阅读 · 0 评论 -
git repo sync 报错error: hebei_server/: branch master is published (but not merged) and is now 1 comm
1. repo rebase2然后在repo sync repo rebase即可原创 2015-12-17 14:07:52 · 4252 阅读 · 0 评论 -
两次代码同时提交
git fetchgit rebase origin/master mastergit push origin master原创 2016-03-09 14:32:57 · 399 阅读 · 0 评论 -
解决 Agent admitted failure to sign using the key 问题 with ssh
配置ssh之前要在本机上装上ssh,可以通过sudo apt-get install ssh或者通过新立德来安装。如果没有进行配置的话,登录到本机或者远程主机需要该主机的密码才行。下面进行无密码登录的配置: 很简单,执行ssh-keygen -t rsa命令,一路敲回车就行了,就在.ssh文件夹下生成了2个文件,一个公钥和一个私钥文件, id_rsa id_rsa.pub转载 2017-05-19 10:51:14 · 345 阅读 · 0 评论 -
You are not currently on a branch. Please specify which branch you want to merge
2.You are not currently on a branch.症状:有一次pull的时候又出现冲突,这回用“git reset --hard FETCH_HEAD”方法都不行了,出现:$ git pullYou are not currently on a branch, so I cannot use any'branch..merge' in your c...原创 2016-07-01 13:32:24 · 9814 阅读 · 0 评论