Answers for "push to github git"

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
0

how to push repository to github

$ git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
Posted by: Guest on February-14-2021

Browse Popular Code Answers by Language