166
114

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がrejectされたときの対処

Last updated at Posted at 2015-06-25

たまに起こるのでメモします。
ブランチ切って作業していて完成したからpushしようとしたらrejectされた。
エラー文を見てみると下記が原因らしい。

is behind```
頻繁にpullしてるつもりなんですが、、僕がpushするまでの間に、他の人
のpushがあるなどしてリモートが変更されている状況のときに起こるっぽい
ですね。
対処方法はググるとたくさん出てきますが、このときhintってのが出てて
"git pull ..."って書いてある。今までpullっていうとmasterから
pullするってことしか頭になかったんですがね、、、とりあえず
```git pull origin master```してみた。直らない。
いろいろやっててたらどうやらpullの指定先を間違っていた。作業ブランチが
hogeのときで、このエラーがなかなか直らないときは```git pull origin hoge```
ってのをやってみましょう。
僕はこれで直りました。
166
114
1

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
166
114

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?