如何获取git存储库中特定文件的更改历史记录

mač*_*ček 9 git diff history

我想做的事情如下:

git history my_file
Run Code Online (Sandbox Code Playgroud)

可能的输出

2010-05-16
+ add this line
+ more code here

2010-05-15
+ delete code below
- bad code
- more bad codd

2010-05-12
+ changes made here
Run Code Online (Sandbox Code Playgroud)

CB *_*ley 18

尝试:

git log -p -- filename
Run Code Online (Sandbox Code Playgroud)


Von*_*onC 8

最接近你想要的是,来自git log:

git log -p -U0 --pretty=format:%ai -- filename
Run Code Online (Sandbox Code Playgroud)
  • -p:正如Charles Bailey他的回答中提到的那样:生成补丁
  • -U0:使用0行上下文而不是通常的三行生成差异.
  • --pretty=format:%ai:在补丁输出前面加上作者日期,ISO 8601格式.

例:

/c/Prog/Git/git2/git (master)
$ git log -p -U0 --pretty=format:%ai -- wt-status.c
2010-03-24 16:25:43 -0700
2010-03-13 23:00:27 +0100
diff --git a/wt-status.c b/wt-status.c
index e0e915e..5848f1c 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -306,0 +307,2 @@ static void wt_status_collect_changes_worktree(struct wt_status *s)
+       if (!s->show_untracked_files)
+               DIFF_OPT_SET(&rev.diffopt, IGNORE_UNTRACKED_IN_SUBMODULES);

2010-03-08 22:58:09 -0800
diff --git a/wt-status.c b/wt-status.c
index 5807fc3..dcaec7f 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -292,0 +293 @@ static void wt_status_collect_changes_index(struct wt_status *s)
+       struct setup_revision_opt opt;
@@ -295,2 +296,4 @@ static void wt_status_collect_changes_index(struct wt_status *s)
-       setup_revisions(0, NULL, &rev,
-               s->is_initial ? EMPTY_TREE_SHA1_HEX : s->reference);
+       memset(&opt, 0, sizeof(opt));
+       opt.def = s->is_initial ? EMPTY_TREE_SHA1_HEX : s->reference;
+       setup_revisions(0, NULL, &rev, &opt);
+
Run Code Online (Sandbox Code Playgroud)