I created a local git repository from an svn branch in order to use git's features and dcommit when all the work is ready. I had a very large change and it was postponed. The branch I was working on in svn has been merged to the trunk and removed. A new release branch was created. If I were in svn, I would switch to the new branch and pull. Instead, I cloned the new branch and I want to merge my changes into it, then commit them. However, git apparently can't see their shared history and all my changes look like a conflict:
$ git svn clone --revision HEAD https://svnedge.yadayada.com/svn/ASSIST/branches/FY15Q4X_AugMaint FY15Q4X_AugMaint
...edit,build,test....
$ git svn clone --revision HEAD https://svnedge.yadayada.com/svn/ASSIST/branches/FY16Q1X_OctMaint FY16Q1X_OctMaint
$ git branch maint
$ git remote add hankr ../FY15Q4X_AugMaint
$ git checkout -t hankr/maint
$ git merge maint
... almost every file a conflict...
It was suggested that if I pulled in the entire repository, git would be able to see the shared history. I don't have any commit history to preserve, I just want my changes brought into the new release. Thanks for any tips.