Last active
September 25, 2019 08:34
-
-
Save robwelan/d4e7eafc0e48704a5e588607967cdbcd to your computer and use it in GitHub Desktop.
git-push-existing-folder
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
cd existing_folder | |
git init | |
git remote add origin git@[YOUR_PROJECT_FOLDER].git | |
git add . | |
git commit -m "Initial commit" | |
git push -u origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment