-
I want to track a file with its rename ones. For example, a file is called "test_lecture", and then rename to "python_data_analytics". I want to track all the commits for the files if possible. I use I have noticed that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I don't think that out of the box this is easy in |
Beta Was this translation helpful? Give feedback.
I don't think that out of the box this is easy in
GitPython
, but it should be possible to usegit
directly and parse its output instead.GitPython
can make calling intogit
more pythonic, too, but it won't change the fact that you have to deal with a steam of bytes to parse.