Answers for "how to push file to github"

11

push code to github command line

git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master
Posted by: Guest on April-30-2020
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