GitHubのリポジトリ名を変更する方法

GitHub側の操作

GitHubの対象リポジトリ > Setting > Renameで変更

ローカル側の操作

対象ディレクトリ内の .git > configを開き

[remote "origin"]
    url = https://github.com/hisurga/hello-github.git
    fetch = +refs/heads/*:refs/remotes/origin/*

[remote "origin"]
    url = https://github.com/hisurga/hello-gitHub2.git
    fetch = +refs/heads/*:refs/remotes/origin/*

に変更します。