Answers for "uploading a folder to github"

6

uploading a folder to github

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 October-22-2020

Code answers related to "uploading a folder to github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language