Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jsaraviadrago/2333bb39fe03b4c119bbf3204dc9e770 to your computer and use it in GitHub Desktop.
Save jsaraviadrago/2333bb39fe03b4c119bbf3204dc9e770 to your computer and use it in GitHub Desktop.
# Create repo in Github
# All of this has to be done in terminal
# Before doing this you have to go with the terminal to the folder that your files are
git init
git add .
git commit -m "First commit Message"
git remote add origin GitHub-repository-URL #Instead of GitHub-repository-URL put the URL from your Github repo
git push -u origin master
# All files will be up in the cloud.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment