Answers for "Terminal commands to push a file to Github"

0

Terminal commands to push a file to Github

echo "# CH-Edus" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/psybenny/CH-Edus.git
git push -u origin main
Posted by: Guest on September-21-2021

Code answers related to "Terminal commands to push a file to Github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language