Answers for "how to update an existing repository in github"

0

how to update an existing repository in github

git init
git add . or git add --all
git commit -m 'First commit'
git remote add origin remote github.com/username/repository.git
git remote -v
git push origin master
Posted by: Guest on April-21-2022

Code answers related to "how to update an existing repository in github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language