2

Some files in our project are moved to a directory which is not the correct place for them. I would like to see who was the creator of the directory and who moved the files.

For some files this is the correct place, so I would like to see the moving date and the user who moved them for every single file. Is this possible with git bash?

Chris Crozz
  • 163
  • 2
  • 9

1 Answers1

3

Try at least a git log --follow -- a_renamed_file inside the new directory (the incorrect one)

That will give you an idea of the commit in which that file was moved/renamed (assuming its content was the same or very similar)

You can then see the author of that commit, who likely created the destination folder.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250