I'm doing a migration of SVN to GIT and cloning my SVN repo to my local machine (with history). The result of this clone removes the keyword data from both the current revision as well as every historical revision for every file in the repo. Example:
In SVN:
-- $Date: 2020-02-27 13:54:28 -0800 (Thu, 27 Feb 2020) $
-- $Rev: 65875 $
After, it looks like this:
-- $Date$
-- $Rev$
Are the keywords supposed to be removed like this or am I doing something wrong to remove that information? Is there any kind of workaround to keep this, while also keeping the history as well?
The command I'm using to clone is this:
git svn clone "MY SVN URL" --prefix=svn/ --no-minimize-url --authors-file "authors-transform.txt"