Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Last active April 27, 2016 15:12
Show Gist options
  • Save tonysneed/fe2c9a056dc215d29f32 to your computer and use it in GitHub Desktop.
Save tonysneed/fe2c9a056dc215d29f32 to your computer and use it in GitHub Desktop.
Command to add a remote git repository
# Sets the new remote
git remote add origin <remote repository URL>
# Verifies the new remote URL
git remote -v
# Pushes the changes
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment