I’d like to copy my branch A onto the Organization repository so that it will have branch A, (ie. not integrating the branch,) but looking around, I can’t seem to find any simple way to do this.
Simply add the new remote (Organization) to your old repository (master).
Once you did it simply push the branch A to the new (organization) repository.
cd <old repository>
git remote add origin2 <new_url>
git push origin2 <branch A>
Now you should have the new branch A in your new repository.
The point is to add new remote and to push the branch to your new repository.
Second way id to update the current repository remote to point to the new location:
git remote set-url origin <new url>
And then push the branch.
Both of teh above will have the same result. The difference is that in the first one you add new remote while in the second one you change the remote.
