1. Показать список удаленных источников:
$ git remote -v
origin git@github.com:USERNAME/REPOSITORY.git (fetch)
origin git@github.com:USERNAME/REPOSITORY.git (push)
2. Изменить адрес нужного удаленного источника:
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
$ git remote set-url --push origin https://github.com/USERNAME/REPOSITORY.git
3. Выполнить шаг 1 для проверки.