I want to migrate a folder in SVN to GIT with full commit history. However, the folder was deleted prior to migration.
In this case, I thought of cloning the revision of the project that still had the folder intact.
For this, I tried
git svn clone -r <REVISION NUMBER> <SVN URL>
No branch/commit history is fetched
Then I tried
git svn clone -s -r <REVISION NUMBER> <SVN URL>
ERROR received: HEAD revision does not exists.
TortoiseSVN saved my life.
Viola! You have the folder back in your HEAD revision with full history intact.