git のリポジトリURLを変更する
2013年06月07日
git のリポジトリURL を HTTP (https://github.com/…) から SSH (git@github.com:…) に変更して、push
時にユーザー名とパスワードの問い合わせを防ぐ。
$ git remote set-url origin git@github.com:<YOUR_GIT_REPOSITORY_ADDRESS>
git のリポジトリURL を HTTP (https://github.com/…) から SSH (git@github.com:…) に変更して、push
時にユーザー名とパスワードの問い合わせを防ぐ。
$ git remote set-url origin git@github.com:<YOUR_GIT_REPOSITORY_ADDRESS>