Github is a hosting service for software development projects using the Git revision control system. GitHub offers free accounts for open source projects (public repositories) and commercial plans for private repositories.
I’ve been using github for a while to clone source code, but I had never imported existing source code to github.
Here are the steps to follow:
- If you don’t have an account yet, sign-up for github.
- Setup github for Linux, Windows or Mac OS X.
- Create a repository as shown as explained here. You should now have a URL in github, something like [email protected]:user/repo_name.git, which we’ll use below.
- Go to the directory with your existing source code and create a local repo:
123git initgit add .git commit -m "Initial commit" - Finally, type the commands below to add your code to your new repository:
123git remote add somename git@github.com:user/repo_name.gitgit pull git@github.com:user/repo_name.gitgit push somename master
That’s it, anybody should now be able to clone you code as follows:
1 |
git clone git://github.com/user/repo_name.git |
NB: If your existing source code (or part of it) comes from a git repository, you need to delete existing .git* files and directory first:
1 |
rm -rf `find . -name ".git*"` |
or you won’t be able able to import your existing project to github and it will just upload an empty directory without source code.
Sources:
- http://stackoverflow.com/questions/2866872/how-to-upload-fresh-code-at-github
- http://stackoverflow.com/questions/4658606/import-existing-source-code-to-github
Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011.
Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress
http://help.github.com/
@ Arcko
Yes, but I could not find the instructions above in that page. It just shows how to do steps 1, 2 and 3.
Edit: OK, Step 3 also shows how to add a README, but I did not read that part because README was automatically generated when I created the repo :p. Obviously I should have read it…
The ‘git pull’ in step 5 is not necessary.
@ Albert ARIBAUD I think I had to do that step because I clicked on “Initialize this repository with a README” when I created the repository. So If I run git push command directly, I get the following error: ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to ‘[email protected]:cnxsoft/deleteme.git’ To prevent you from losing history, non-fast-forward updates were rejected Merge the remote changes (e.g. ‘git pull’) before pushing again. See the ‘Note about fast-forwards’ section of ‘git push –help’ for details. But if the repo is completely empty, then you’re right and the ‘git pull’ request… Read more »