
git/svn
快乐的霖霖
一个人默默的奋斗者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
掌握git
掌握git非常好的资料:1. 廖雪峰: http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b0002. 猴子都能懂得git入门: http://backlogtool.com/git-guide/cn/stepup/stepup1_1.html原创 2015-07-31 01:34:01 · 712 阅读 · 0 评论 -
Git冲突:commit your changes or stash them before you can merge.
Git冲突:commit your changes or stash them before you can merge.今天用git pull来更新代码,遇到了下面的问题:[html] view plaincopyerror: Your local changes to the following files would转载 2015-09-17 10:19:13 · 1455 阅读 · 0 评论 -
深入理解Git基本原理
深入理解Git基本原理资料:1. http://my.oschina.net/sunchp/blog/3460762. http://www.nowamagic.net/academy/detail/481602073. pdf文档明天完成~~~~~原创 2015-11-07 00:57:13 · 1242 阅读 · 0 评论 -
git stash
git stashgit stash 可用来暂存当前正在进行的工作, 比如想pull 最新代码, 又不想加新commit, 或者另外一种情况,为了fix 一个紧急的bug, 先stash, 使返回到自己上一个commit, 改完bug之后再stash pop, 继续原来的工作。基础命令:$git stash$do some work$git stash pop原创 2015-11-28 18:21:09 · 498 阅读 · 0 评论 -
git常用命令速查表
git命令图示原创 2015-11-29 21:03:51 · 1471 阅读 · 0 评论 -
如何解决merge conflict的方法
如何解决merge conflict的方法首先在pull的时候加上rebase,解决conflict,最后pushgit pull --rebase origin remoteif there is conflict, clean it and execute the following commandgit add .git rebase --原创 2017-01-06 22:38:55 · 19265 阅读 · 0 评论