码迷,mamicode.com
首页 > 其他好文 > 详细

git log 积累

时间:2014-05-01 18:33:15      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:git log

git  log 的用法,具体参考 git log --help,以下是个人在使用中遇见的问题,略作统计。

查看单个文件的修改差异(类似于查看单个文件的log,同时将每次log 的详细记录都显示出来):

        --full-diff
Without this flag,
git log -p <path>... shows commits that touch the specified paths, and diffs about the same specified paths. With this, the full diff is shown for commits that touch the specified paths; this means that "<path>…" limits only commits, and doesn’t limit diff for those commits.

$ git log -p  <path>... test.c
$ git log -u  <path>... test.c
$ git log -patch  <path>... test.c

具体查看,结合使用 -p --stat 效果更清晰,详细参考git-log help的COMMAN DEFF OPTIONS
$ git log -p --stat <path>...test.c

git log 的用法很多,慢慢累积,也在此慢慢记录。

git log 积累,码迷,mamicode.com

git log 积累

标签:git log

原文地址:http://blog.csdn.net/n289950578/article/details/24794149

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!