リモート URL は、「コードがここに保存されています」ということを表現する Git のしゃれた方法です。 その URL は、GitHub 上のあなたのリポジトリや、他のユーザーのフォーク、さらにはまったく異なるサーバーだったりします。
プッシュできるのは、2 種類の URL アドレスに対してのみです。
https://github.com/user/repo.gitのような HTTPS URLgit@github.com:user/repo.gitのような SSH URL
Git はリモート URL に名前を関連付けます。デフォルトのリモートは通常 origin と呼ばれます。
これらの URL の違いに関する情報については、どちらのリモート URL を使うべきか?を参照してください。
リモートの作成
git remote add コマンドを使用してリモート URL に名前を関連付けることができます。 たとえば、コマンドラインに以下のように入力できます:
git remote add origin <REMOTE_URL>
これで origin という名前が REMOTE_URL に関連付けられます。
git remote set-url を使えば、リモートの URL を変更できます。

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
