I\'m very new to Git, so facing some issues with it correct usage. Here is my scenario.
I have a fork of my master repository and cloned it into my local. In that, I hav
Just run the following command on your terminal
$ git remote and upstream {your upstream repository link here}
After this command run :
git remote -v
this command will show you your github repository path and upstream repository path .
example output:
origin https://github.com/ {Your Github username} / {repository name} (fetch)
origin https://github.com/ {Your Github username} / {repository name} (push)
upstream https://github.com/ {Upstream github username} / {repository name} (fetch)
upstream https://github.com/ {Upstream github username} / {repository name} (push)