
Git
文章平均质量分 96
freshgerl
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git —— inside
1. low level command git ls--files --stage : view index content git cat-file < blob | tree | commit > hash : view objects content git ls-tree hash : view tree object content, because git cat...原创 2018-06-16 22:44:34 · 279 阅读 · 0 评论 -
Git —— merge, cherry-pick, rebase
1. merge explore You may read my article Git inside before. I hope it’ll help you to know Git in essence. (1) test case 1: merge without conflict ~ $ mkdir beta ~ $ cd beta ~ $ git init ~ $ ...原创 2018-06-19 20:59:16 · 408 阅读 · 0 评论