Reputation: 628
I developed a project on my personal github account. I'm a member (not owner) of an organisation and would like to fork my project in the organisational account, such that the organisation can help maintain it in the future. How is this done best?
As far as I understood, when I transfer or perform an import into the organisation account from my personal repo, I loose the project in my account which I don't want.
I'm sorry in case this is a "stupid" question - I'm pretty new to git and github...
Upvotes: 3
Views: 1278
Reputation: 628
Thanks for all the answers.
According to the github support team:
Importing is intended to bring code from outside GitHub into GitHub, so that wouldn't be suitable.
and
Transferring would indeed mean you no longer had the repository on your account.
The solution for me was:
fork
and there was a pop-up, asking for where to fork this repoI hope to help others in the future with this :-)
Upvotes: 1
Reputation: 193
you should be able to import
without loosing the project in your personal account.
This is what IMO makes the difference between transfer
and import
.
Be sure to login with your organizational account, if you have two separate accounts
Upvotes: 0
Reputation: 59618
Any reason not to transfer it, then fork it again back to your account?
That way you can still raise pull requests from your person fork back to the main one.
Upvotes: 1