現状の確認
現在HTTPSなのかSSHなのか確認するために次のコマンドを実行します。
$ git remote -v
origin git@github.com:UserName/REPO_NAME.git (fetch)
origin git@github.com:UserName/REPO_NAME.git (push)
上記のように表示されればSSHです。
変更する
次のコマンドを実行することでHTTPSに変更できます。
git remote set-url origin https://github.com/UserName/REPO_NAME.git
変更されたか確認する
再度git remote -v
を実行して変更されたか確認します。
$ git remote -v
origin https://github.com/https://github.com/UserName/REPO_NAME.git (fetch)
origin https://github.com/https://github.com/UserName/REPO_NAME.git (push)