Skip to Content

git查看文件修改历史学习教程

在学习git http://www.maiziedu.com/course/11/初期,我们会遇见一个常见的问题,想要查看某个文件的修改历史。这里就给大家详细讲解一下步骤。
  
  如何查看一个文件的修改历史记录:
  
  第一个步骤就是找到某个文件的修改历史
  
  git log --pretty=oneline ./static/js/detail.js
  
  结果会列出下面的结果
  
  e4f37d08ce8e9d729a824568f3a23d4eeb21ba30 恢复误删的js
  
  85e4a01822b690da8b152d780271a12d9a3b8dd9 添加 反馈详情页面
  
  0d3893c8c4f8b124ca50731f02334b70b88ebe5e 更新页面
  
  第二个步骤就是查看具体的历史修改记录
  
  git show e4f37d08ce8e9d729a824568f3a23d4eeb21ba30
  
  结果会看到如下的修改信息
  
  commit e4f37d08ce8e9d729a824568f3a23d4eeb21ba30
  
  Author: durban <zhangdapeng89@126.com>
  
  Date:   Mon Dec 21 11:26:20 2015 +0800
  
  恢复误删的js
  
  diff --git a/gulpfile.js b/gulpfile.js
  
  index 6563d1b..da42836 100644
  
  --- a/gulpfile.js
  
  +++ b/gulpfile.js
  
  @@ -78,6 +78,16 @@ gulp.task('fonts-replace', ['publish-fonts'], () => {
  
  .pipe(gulp.dest('./static/css/tmp'));
  
  });
  
  +gulp.task('images-replace', ['webpack','publish-images'], () => {
  
  +  return gulp.src(['./static/build/rev/images/*.json', './.public/js/**/*.js'])
  
  +    .pipe(revCollector({
  
  +      dirReplacements: {
  
  +        '/images/': ''
  
  +      }
  
  +    }))
  
  +    .pipe(gulp.dest('./.public/js/**/*.js'));
  
  +});
  
  +
  
  是不是很清晰。Yeah!
  
  原文来自:GoWhich

发表新评论

  • 你可以在文本中使用BBCode标记语言。 URL会自动被转为链接。

更多关於格式化选项的信息

CAPTCHA
请验证您是否是机器人。
Image CAPTCHA
Enter the characters shown in the image.