Skip to content

Instantly share code, notes, and snippets.

@csbond007
Created July 25, 2016 15:48
Show Gist options
  • Save csbond007/3a30d2d7a261fb2f2ac6aa9891e977e4 to your computer and use it in GitHub Desktop.
Save csbond007/3a30d2d7a261fb2f2ac6aa9891e977e4 to your computer and use it in GitHub Desktop.
Pushing code to GIT Repository from Linux
git init
git add .
git commit -m "First commit"
git remote add origin "remote repository URL"
git remote -v
git pull origin master
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment