If you are updating or changing a repository that already has an existing URI, use the following line.
To add a remote URL to a completely new GIT Repository use the following code:
Use the following code to identify the remote URL of your existing Repo.
Step 1: First create a .git ignore document $ touch .gitignore Step 2: add the files to be untracked in .gitignore $ nano .gitignore (to access the file and edit) Simply add the file name and its directory. Step 3: Delete the file from .git tracking $ git rm –cached…