1

There are some tar.gz file in a project migrated from svn to git, and i should check who and when this tar.gz file added. For there are some of them were added after the project migrated from svn to git, and i can easy to check author and data by using git log *.tar.gz. But some added before the project migrated and when i use git log .tar.gz, the author and date was who pushed this project to git rather than real author. Are there any way i can check the real author of this files?

Chao Zhang
  • 190
  • 2
  • 15

1 Answers1

1

If the project was migrated in one operation (git init, add the content of the svn repo), without migrating each svn revision, then no, you cannot see who added those tar.gz, and when.

If the project was migrated with svn2git (promoted here by Vampire), then you should see the log with the same git log command.

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