Just after adding remote repo, I tried git fetch remoteRepoName
but it\'s returning this error:
fatal: I don\'t handle protocol \'https\'
>
This issue could be with the invalid origin URL.
To check repo URL execute below command
git remote -v
it will show the origin urls and then change with correct url. The below is the command for that.
git remote set-url origin https://github.com/**USERNAME/REPOSITORY**.git
again verify with the command
git remote -v
for more information refer this link
https://help.github.com/articles/changing-a-remote-s-url/