Just after adding remote repo, I tried git fetch remoteRepoName
but it\'s returning this error:
fatal: I don\'t handle protocol \'https\'
>
if you have problems after run
git push origin master
fatal: I don't handle protocol 'https'
Fix it removing that reference
git remote rm origin
#then check is all worked well
git remote -v
Now you could add again the url for the remote repository
git remote add origin https://example.com/user/repo.git
#and check
git remote -v
#And push the changes in your local repository to github
git push origin master