How to find svn project author after migrate the project from svn to git?

笑着哭i 提交于 2019-12-23 01:55:07

问题


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?


回答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.



来源:https://stackoverflow.com/questions/37452788/how-to-find-svn-project-author-after-migrate-the-project-from-svn-to-git

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!