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 1 year has passed since last update.

git pull origin developができない

Posted at

git pull origin developができない

解決コマンド例

以下のように2段階に分けて実行すると上手くいく場合がある。

$ git fetch origin develop
$ git merge origin develop

上記を理解する補足説明

  • pullはfetchとmergeを1度で実行するコマンド
  • fetchはリモートリポジトリの最新情報をローカルリポジトリに取ってくること。
    • fetchという単語自体、「取ってくる、呼んでくる」という意味。
  • mergeでその最新情報を反映させる。
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?