Answers for "using git to push 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

pushing to github

git remote add origin https://github.com/LoganX22/SafeLoan-front-end.git
git branch -M main
git push -u origin main
Posted by: Guest on April-27-2021
-3

how to link a repo to a project on github

$ git init
Posted by: Guest on December-10-2019

Code answers related to "using git to push to github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language