http://stackoverflow.com/questions/4658606/import-existing-source-code-to-githubgit
If you've got local source code you want to add to a new remote new git repository without 'cloning' the remote first, do the following (I often do this - you create your remote empty repository in bitbucket/github, then push up your source)github
Create the remote repository, and get the URL such asgit@github.com:/youruser/somename.git
orhttps://github.com/youruser/somename.git
this
If your local GIT repo is already set up, skips steps 2 and 3code
Locally, at the root directory of your source, git init
ip
Locally, add and commit what you want in your initial repo (for everything, git add .
git commit -m 'initial commit comment'
)rem
to attach your remote repo with the name 'origin' (like cloning would do)git remote add origin [URL From Step 1]
get
git pull origin master
to pull the remote branch so that they are in sync.git push origin master