Skip to content

Instantly share code, notes, and snippets.

@mishrsud
Created March 23, 2016 06:06
Show Gist options
  • Save mishrsud/3b56f93ab12250860ae8 to your computer and use it in GitHub Desktop.
Save mishrsud/3b56f93ab12250860ae8 to your computer and use it in GitHub Desktop.
# Initialize repo
git init
# add everything (except ignored files)
git add .
# add a remote origin
git remote add origin https://{url}
# push to remote repo - push to the master
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment