0
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 5 years have passed since last update.

gitで複数のリモートリポジトリにpushしたい

Last updated at Posted at 2019-08-09

きっかけ

とあるファイルをGitLabで管理していたところ、
「・・・GitHubにも置いておきたい!!!」

複数のリモートリポジトリを登録する

現在のリモートリポジトリを確認

git remote -v
origin	git@gitlab.com:sample/samplesample.git
origin	git@gitlab.com:sample/samplesample.git

リモートリポジトリを追加

git remote add hello https://github.com/nanamicronn/samplesample.git

再度リモートリポジトリを確認

git remote -v
hello	https://github.com/nanamicronn/samplesample.git (fetch)
hello	https://github.com/nanamicronn/samplesample.git (push)
origin	git@gitlab.com:re_build-bootcamp/samplesample.git (fetch)
origin	git@gitlab.com:re_build-bootcamp/samplesample.git (push)

originの代わりにhelloとすることでpushの際に区別することができる!

それぞれのmasterにpushしてみる

既存のリポジトリ

git push origin master

新規でつくったリポジトリ

git push hello master

さいごに

頭で考えると混乱してしまって「嫌だな〜」
と思っていたけど案外シンプルな作業だった・・・

0
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
0
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?