Consider my below scenario :
Suppose my svn repository contains 100 revisions, which has been migrated to Git Repository (So my Git contains the 100 revisions).
Now my svn repository got updated, say with 5 more revisions hence it has 105 revisions. How do i migrate only the revisions 101 t0 105 to my GIT repository?
The main challenges I have :
- I dont want to sync both SVN and Git.(SVN will be decommisioned soon)
- I need to migrate the Revisions with its history.
I tried following up with these links which dont help me,(fyi)
Using svnsync
USing git svn clone
--stdlayout
option, but if that doesn't work for you, then you should specify it manually. Not all commits will appears as history for the master branch--some commits may have just been for tags, or for other branches. Those commits will appear in their respective places within the Git repo when you have them mapped correctly. – Servomotor