I'm trying to migrate from svn to git using git-svn package. All is fine, except one thing. After I launch git svn clone command, repository converts successfully, but all comments like this:
* @version $Id: source.java date time author name $
Are immediately converted to comments like this:
* @version $Id$
Is there a way to avoid this? Here is the full command that I use:
git svn clone http://svn.server/svn/repository/folder_in_root --preserve-empty-dirs -A committers.txt --trunk=. new_folder
Any Help would be appreciated.