0
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 push した時に起きるYour branch is ahead of 'origin/main' by 1 commit の原因と解決方法

Last updated at Posted at 2022-09-10

エラーの内容と推察

git commit -a -m "comment" でコミットをしようとしたところ次のメッセージが出てきてしまいました。

On branch main
Your branch is ahead of 'origin/main' by 1 commit.
  (use "git push" to publish your local commits)

読み解くと
今のあなたのブランチは"main"です。
あなたのブランチは以前1つのコミットを行っています。
("git push"を使ってローカルコミットを公開してください)
と書いてあります。

つまり*コミットされた内容がpushされていないよ。*と言う事。

解決方法

書いてある通り、git push しましょう。

git push origin [ローカルブランチ名]:[リモートブランチ名]

すると
image.png
上手くいきました。

原因

どうやら遡っていくと、作業ブランチからコミットをマージしたのちプッシュをし忘れていた様子です。
こまめに作業の区切りではプッシュもしくはステータスの確認をしましょう。

git push

[or]

git status
0
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
0
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?