I created my first repository in GitHub yesterday. When making the connection I used SSH instead of HTTPS, so I went through a little painful SSH key creation and connection pro
Assuming your remote is called origin, run
origin
git remote set-url origin https://...
git remote set-url --push origin https://...
You can view the configured remotes with git remote -v, which should now show your updated URLs.
git remote -v
See the documentation for git-remote for more details.