Using gitk to view the full history of a moved file

后端 未结 4 1167
渐次进展
渐次进展 2021-02-04 00:31

After much searching, I have not found a satisfactory method that is easy to use to view the complete history of a moved file in Git and more importantly in Gitk. Using gi

4条回答
  •  感情败类
    2021-02-04 01:16

    If you want to see the changes that was made in each commit even the file has been renamed, you can use the option -p of git log:

    git log -p --follow [file/with/path]
    

提交回复
热议问题