1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

gitの「origin」ってなんやねん!

Posted at

originとは

リモートリポジトリのアクセス先に対してデフォルトでつけられる場所(URL)の別名です。

リモーーとリポジトリのアクセス先の設定を確認するコマンドで確認してみます。

$ git remote -v

origin	https://github.com/omo/rails.git (fetch)
origin	https://github.com/omo/rails.git (push)

リモートリポジトリのアクセス先(上記の例. https://github.com/omo/rails.git )が
originという名前で設定されています。

originはどこで設定しているの?

Gitプロジェクトを作成する際のgit initのコマンドで、
リモートリポジトリの設定を行っているはずです。

$ git remote add origin https://github.com/omo/rails.git

この設定を行うことで、リモートリポジトリに対してpushやpullができるようになります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?