1
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 3 years have passed since last update.

Git で. ! [rejected] ブランチ名->ブランチ名 (non-fast-forward) のエラーが出たときの対処法

Posted at

##はじめに

こんにちは。エンジニアとして働き始めて4日目になりました。
さて今回は、実務でgitで悩んで先輩エンジニアの方に助けていただきました。
その解消法についてまとめましたので、ぜひ参考にしていただけると幸いです。

##対象読者

  • 駆け出しエンジニア
  • プログラミング初心者
  • gitがわからない人
  • gitが苦手な人

エラー内容

  1. gitでブランチを切って、問題となっているところを修正した
  2. git add .
  3. git commit -m "hogehoge"
  4. git push ブランチ名

4でpushしたとき、下記のようなエラーが...


 ! [rejected] ブランチ名->ブランチ名 (non-fast-forward)
error: failed to push some refs to 'hogehogehogehogehogehogehogehogehoge.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

pushが出来なかったようです。
リモートのブランチがリベース?されていて衝突しまったみたい。
リベースの意味はまた別途調べたいと思います。

##解決方法

先輩エンジニアさんが助けてくれたことをそのまま順を追って調べてみました。
今回の解決方法はおそらく、
ローカルのブランチを一旦消して再度作り直すというやり方です。

gitのローカルの中身(実際にはもっとブランチがありますが今回は省略)

- master
- feature/hogehoge(修正していたブランチ)

手順

  1. git reset --soft HEAD^ → feature/hogehogeブランチをコミット前に戻す。
    (参考: https://qiita.com/shuntaro_tamura/items/db1aef9cf9d78db50ffe)
  2. git stash → add した部分の履歴を保管しておく
  3. git checkout master → masterにチェックアウトする
  4. git branch -D feature/hogehoge → feature/hogehogeブランチを一旦消す
  5. git pull → masterのリモートの最新情報をローカルに持ってくる
  6. git checkout feature/hogehoge → 再度、feature/hogehogeブランチを作ってチェックアウトする
  7. git stash pop → 手順2で保管しておいた履歴を復元する
  8. git add . → addする
  9. git commit -m "hogehoge" → commitする
  10. git push origin feature/hogehoge → pushする

上記でpushに成功しました。
他にもやり方があるみたいですが、今回はこちらのやり方を紹介いたします。

##終わりに
実務に入ってみて、gitって難しいなあと感じました。
多分これからもgitに悩まされるのだろうと思いますが1つ1つ覚えて行けたらなあと思います。

参考になりましたら幸いです。

##参考記事

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