View the change history of a file using Git versioning

后端 未结 24 1991
臣服心动
臣服心动 2020-11-22 16:40

How can I view the change history of an individual file in Git, complete details with what has changed?

I have got as far as:

git log -- [filename]
         


        
24条回答
  •  春和景丽
    2020-11-22 17:15

    For this I'd use:

    gitk [filename]
    

    or to follow filename past renames

    gitk --follow [filename]
    

提交回复
热议问题