Answers for "how to create folder in github"

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
3

how to make a folder into git repo

$ git remote add origin [email protected]:username/new_repo
$ git push -u origin master
Posted by: Guest on August-17-2020
-1

github create directory

git push origin NAME-OF-BRANCH
Posted by: Guest on March-16-2021
-1

github create directory

git commit -m "DESCRIBE COMMIT IN A FEW WORDS"
Posted by: Guest on March-16-2021
-1

github create directory

cd NAME-OF-FILE
Posted by: Guest on March-16-2021
0

github create directory

touch README.md
nano README.md
#### ADD YOUR INFORMATION
#### Press: control + X
#### Type: Y
#### Press: enter
Posted by: Guest on March-16-2021

Code answers related to "how to create folder in github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language