Created
August 3, 2019 23:14
-
-
Save jsaraviadrago/2333bb39fe03b4c119bbf3204dc9e770 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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