摘要: 版本对比========#### 1. 对比两个 COMMIT`git diff `#### 2. 对比 COMMIT 和父 COMMIT`git diff ` 或 `git diff-tree -p `#### 3. 只显示某一个 commit 修改过的文件名称`git diff-tree --... 阅读全文
posted @ 2015-06-05 01:08 iFantasticMe 阅读(320) 评论(0) 推荐(0) 编辑
摘要: **git-fetch** 命令从远程仓库复制 heads 和 tags 信息到本地,保存在临时文件 .git/FETCH_HEAD 中以备 git-merge 命令使用。你可以使用 `git fetch` 命令获取远程仓库所有分支信息,或者 `git fetch --all` 或 `git rem... 阅读全文
posted @ 2015-06-05 00:58 iFantasticMe 阅读(2371) 评论(0) 推荐(0) 编辑