Beginner with GIT & SubGit :).
On SVN side (Subversion version 1.7.4), developers created a branch not located under branches folder but at the same level as trunk, tags, branches, i.e.:
- trunk
- branches
- tags
- TheBranch
Then they moved this branch under branches folder (we can see a lot of changes):
- trunk
- branches
- TheBranch
- tags
When we are migrating the associated repository into Git using SubGit, the migrated branch contains only the revision associated to the move (ps: no update done after the operation). Nevertheless the number of revisions processed by SubGit is the correct one, but all done in the branch before its move are not displayed.
The command used is:
subgit import --svn-url [svn_url_repository] [path_of_git_repo] --username [user_name] --password [password].
Did we forget an option?