git push new repo to remote code example

Example 1: git push repo

git remote add origin https://github.com/tqisjim/google-oauth.git
git push -u origin master

Example 2: git push new repo to remote

$ git remote add origin 
# Sets the new remote

# Push the changes in your local repository to GitHub.
$ git push -u origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin

Example 3: github push code from one repo to another

cd rhq
git push https://github.com/user/example master:master

Tags:

Misc Example