Answers for "github create repo from folder local"

5

github add directory to repository

git init
git add <folder1> <folder2> <etc.>
git commit -m "Your message about the commit"
git remote add origin https://github.com/yourUsername/yourRepository.git
git push -u origin master
git push origin master
Posted by: Guest on May-15-2020
0

how to upload on github with command

git remote add origin https://github.com/yourusername/your-repo-name.git
Posted by: Guest on July-02-2020
-3

how to link a repo to a project on github

$ git init
Posted by: Guest on December-10-2019

Code answers related to "github create repo from folder local"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language