I have just converted a large nested SVN repo to git using the git2svn command line tool and now have a git repo at D:\project
Repo folder structure as follows:
\web\projectA
\web\projectB
\winforms\projectD
\winforms\projectE
I want to extract \web\projectA
into a new git repo to upload to github.
After some research I have used git subtree split --prefix=web\projectA -b justprojectA
However the new branch after running the subtree command still contains all the folders from the root of the repo and doesn't seem to have worked at all.
I am using git shell on WIndows 7.