随笔 - 280
文章 - 7
评论 - 853
阅读 -
104万
09 2016 档案
git 忽略提交某个指定的文件(不从版本库中删除)
摘要:执行指令: 1 2 [Sun@webserver2 demo]$ git update-index --assume-unchanged config.conf [Sun@webserver2 demo]$ git status 1 2 [Sun@webserver2 demo]$ git upda
阅读全文
git pull 和本地文件冲突问题解决
摘要:具体方法如下 git pull origin 分支 //出现错误 git stash 缓存起来 git pull origin 分支 git stash pop //还原 git stash clear 参考资料: http://www.01happy.com/git-resolve-conflic
阅读全文