I'm importing svn repository to Git (the tool will be Git Extensions). During the import process I'll see lines like:
r155 = c154830e428e064e14c373d344f7b233c70c56a9 (refs/remotes/trunk)
I'm guessing that this means in this case that svn revision 155 gets hash c15483... etc., am I correct? In the future when we are living with Git and svn is "forgotten", it would be great that we could trace versions released before Git by svn revision numbers. So the question is, is there any way of importing svn revision number to Git commit tag during this import process (all revisions as tags would be great)? New commits will be handled differently, so this concerns only life before Git. I found a topic related to my case, but I'm not quite sure does is suit for me (actually the scripts in it):
git-svn: automatically importing/creating svn revisions as git tags
From the mentioned line I'd like to have a tag 'r155' for example. Because the environment is quite new, an example (for dummies) would be great...
Thanks in advance!