Has anyone tried or figured out how to import a gitorious repo into github? I already use github and wanted to see if there was a way to pull from a gitorious repo that I wanted
Immediately after you create a new repository on GitHub, the website gives you 3 elegant personalized instruction sets. The 3 different options are:
If my username was user1 and the new repo was called project1, here is what it would say:
cd existing_git_repo
git remote add origin git@github.com:user1/project1.git
git push -u origin master
The previous answers are correct, but here's the step by step process including the missing step of delinking the local copy from Gitorious; without it, you'll get the error fatal: remote origin already exists
when you try to add Github as the new origin.
Commands:
git clone git://gitorious.org/USER/REPO.git
cd REPO
git remote rm origin
git remote add origin https://github.com/USER/REPO.git
git push --mirror https://github.com/USER/REPO.git
You'll obviously need to substitute USER and REPO, and the last two commands are provided for you after step 1 when you create your Github repo.
The answers already given will just import master - if you want to import the entire repo including all branches, tags, etc, you need to do the following:
Clone the gitorious repo using the --bare flag - this preserves all branches/tags and doesn't create a working copy:
$ git clone --bare git://gitorious.org/USER/REPO.git
Change directory into the local repo:
$ cd therepo.git
Push the repo to github using the --mirror flag - this copies all branches, tags, history etc.:
$ git push --mirror git@github.com:USER/REPO.git
Remove the local copy - you don't need it anymore and it's not much use for anything
$ cd .. && rm -rf therepo.git
Once you've done that, you can switch any local repos using the git remote rm/add
commands as given above.
How would this be different from the normal method of creating a repository on Github?
Github doesn't care where the repository came from in the first place, it just accepts whatever you push up to it.