6
1

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】git pull時のNot possible to fast-forward, aborting.解消法

Last updated at Posted at 2022-06-07

状況

git pullを実行した際に以下のように出力され、git pullを正常に実行できませんでした。

ターミナル
$ git pl origin main
From github.com:UserName/sample-app
 * branch            main       -> FETCH_HEAD
fatal: Not possible to fast-forward, aborting.

git pullを実行する前にローカルリポジトリを編集し、commitしたことが原因のようです。

解消法

以下のように実行することで解消しました。

ターミナル
$ git pull --rebase origin main

上記のコマンドを実行することでgit fetch + git rebaseが実行されます。

git pullgit pull --rebaseの違いについては以下のページをご参照ください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?