Does anyone know a tool for Git similar to SVN Time-Lapse View

后端 未结 7 586
攒了一身酷
攒了一身酷 2021-02-07 05:51

SVN Time-Lapse View is a cross-platform viewer that downloads all revisions of a file and lets you scroll through them by dragging a slider. As you scroll, you are shown a visua

7条回答
  •  遥遥无期
    2021-02-07 06:37

    From the command line, I suggest one way:

    git whatchanged -p pathToACertainFile
    

    Which will show all the full diffs that have occurred to that file, and which sha hash they were done at (from latest to earliest). Best if you have your terminal set up to show stuff colorized.

提交回复
热议问题