How can I import source code from my computer to my GitHub account?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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)
Create the remote repository, and get the URL such as
git@github.com:/youruser/somename.gitorhttps://github.com/youruser/somename.gitIf your local GIT repo is already set up, skips steps 2 and 3
Locally, at the root directory of your source,
git init2a. If you initialize the repo with a .gitignore and a README.md you should do a
git pull {url from step 1}to ensure you don’t commit files to source that you want to ignore 😉Locally, add and commit what you want in your initial repo (for everything,
git add .thengit commit -m 'initial commit comment')to attach your remote repo with the name ‘origin’ (like cloning would do)
git remote add origin [URL From Step 1]git pull origin masterto pull the remote branch so that they are in sync.git push origin master