2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Gitでremoteの管理をする方法

Posted at

初Qiitaです。よろしくお願いします。

概要

Gitで複数のリモートを使い分けるときのコマンドをまとめました。

基本的にはgit remoteコマンドにオプションを指定しながら操作していきます。

リポジトリ名 (originupstreamのような、各リポジトリに個別に名付けるもの) と、対応するリポジトリのurlの準備が必要です。

Remoteとの連携操作

リポジトリとの連携の追加

git remote add [リポジトリ名] [リポジトリのurl]

リポジトリとの連携の削除

git remote rm [リポジトリ名] [リポジトリのurl]

リポジトリのurlの変更

git remote set-url [リポジトリ名] [新しいリポジトリurl]

参考資料

Git公式ドキュメント: Git - git-remote Documentation

あとがき

将来的にはgit remoteのドキュメントを全部読んでみたいです。オプションのバリエーションもそんなに膨大なわけではないので意外と行けそう。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?