I have two github repositories, both of which I am an admin:
Both were created using git-svn from ... the svn repository, of course. Now I would like to combine the two repositories into one sequential view (please excuse me if my terminology is not accurate). I would like to have one repo (https://github.com/sghael/OSQA) with several branches:
- master - it automatically syncs with svn and does not receive any built-in git commits. (We already have this automatic synchronization using the cron job that git svn rebase does)
- "another master" (let him osqaplus ). We will perform our integration work on this branch, and from time to time we will combine new content with the wizard.
- Any number of development branches / features that osqaplus needs to fork.
Now, what I would like to do is accept the changes from my own repository (ripper234) and add them to the sghael repository , as if I were originally forked from it . I suppose this will be achieved by creating a new fork and merging my changes there, but I'm too new to git to try to do this on my own. In addition, when I look at the sghael project and click "fork", they simply transfer me to my own repository and the actual fork is not created. Should I rename my existing repo for this?
source share