14
17

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.

ローカルにないブランチをリモートから持ってくる時はPULLしない

Last updated at Posted at 2016-08-04

ローカルにはまだないブランチをリモートから持ってきたい、という状況を考えます。
たとえば、誰かと共同で追加機能の開発をしていて、そのパートナーが作成したブランチをリモートを介して共有したい、というようなことです。
あるいは、一人で開発していても、複数の端末を用いている場合には同様の状態になります。

ローカルにないブランチをリモートから持ってくるときには git pull では駄目なようです。というのも、 git pullgit fetch からの git merge FETCH_HEAD と同じなので、引っ張ってきた新しいブランチの内容が自分が現在いるブランチにマージされてしまいます。そうではなく、ローカルに同名・同内容のブランチを作りたいわけです。

これを実現するには、fetchコマンドで、マージせずに情報を引っ張って、checkoutします(Thanks: @tomohisaota さん)

git fetch
git checkout newbranch 

参考:Pulling code from remote git branch, when it does not exist locally

14
17
2

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
14
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?