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

...