
版本管理工具
文章平均质量分 77
KylinJoe
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git初学---版本回退【上一个版本】与穿越【下一个版本】
root@WSWINCNHZ1751 ~/git/learngit (master) $ git add distribution.txt root@WSWINCNHZ1751 ~/git/learngit (master) $ git commit -m 'the no.2' [master 327f725] the no.2 1 file changed, 1 insert...原创 2015-10-16 11:29:01 · 232 阅读 · 0 评论 -
git初学---用git需要注意的地方
git diff 比较工作区【本地文件】和暂存区文件之间的差别。 git diff HEAD -- readme.txt 比较工作区和版本库当前指向版本之间的区别。 总之,这两种方法都会比较本地的内容。 ...原创 2015-10-16 14:59:22 · 172 阅读 · 0 评论