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

リモートブランチに対して、ローカルブランチがいくらか進んでいる状況の解決方法

Last updated at Posted at 2020-07-02

#リモートブランチに対して、ローカルブランチがいくらか進んでいて、その変更内容をリモートにpushしていない状況

$git status
On branch develop
Your branch is ahead of 'origin/develop' by 2 commits.
  (use "git push" to publish your local commits)

nothing to commit, working tree clean

現在のdevelopがリモートのdevelopであるorigin/developより2コミット進んでいるという意味
###ローカルブランチの更新内容をリモートに反映させたい場合
$ git push origin
より詳細に指定する場合は、
$ git push origin develop:develop

###リモートブランチの内容に合わせたい場合
$ git reset -hard origin/develop

###コミットをなかったことにしたい場合
$ git reset --hard origin/develop

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?