Answers for "git commands to push my 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
0

how to push a file to github

git remote add origin 'your_url_name'

git push -u origin master
Posted by: Guest on December-31-2020

Browse Popular Code Answers by Language