0 votes
in DevOps by
How do you push a file from your local system to the GitHub repository using Git?

1 Answer

0 votes
by

First, connect the local repository to your remote repository:

git remote add origin [copied web address]      

// Ex: git remote add origin https://github.com/Simplilearn-github/test.git

Second, push your file to the remote repository:

git push origin master

Related questions

0 votes
asked Sep 28, 2021 in Azure Essentials by Robin
0 votes
asked Mar 17, 2021 in GitHub by rajeshsharma
...