I have been asked for a school project to submit my work by pushing it to an existing SVN repository. It is an existing repository with some files already there. I have no need for these files or the previous commits.
I have been working on my assignment with a git repository on my. I would like to push my work to the SVN repository without losing any history. How can I do this?
I would do a mix. That is, first clone the svn with git svn. Then in this new repository, you merge your work from your current git repository.
Now you have your work in the
myworkbranch in the clone from subversion. Time to merge and push.Enjoy!