I already did my first commit into github. But now I have checked out the already committed repository using 'git clone <repo name>'. Now after updating my code I want to commit back the new code into my git repository. How to do that ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you have cloned your GitHub repo using an ssh address like git@github.com:user/repo.git, all you need to do is to:

 git push REMOTENAME LOCALBRANCHNAME:REMOTEBRANCHNAME

like:

 git push origin

would push the current branch to the repo named 'origin' (the default name when you make your clone)

See GitHub pushing help page for more.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.