I am a bit confused whether LibGit2Sharp supports detecting renamed files or not. I have a program which uses the LibGit2Sharp library. I can detect Unaltered files and modified files but i cannot detect renamed files.
RetrieveStatus (String)
The files are created in a c# program, so I know which files I renamed. Is it possible to change the filestatus of a file in LibGit2Sharp to "renamed"?
I want to get the history of a file but sometimes this file is renamed. I want to get the full history, meaning also the renamed files. What would be the best approach for this?
Thank you very much!