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?
Asked
Active
Viewed 49 times
1

Chao Zhang
- 190
- 2
- 15
-
It depends on how project migrated ? .. you only can see author what you can see in `git log` – Amey Jadiye May 26 '16 at 06:18
1 Answers
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.