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.

git checkout ブランチをした際の Your branch is ahead ofの意味

Posted at

git checkout task2-1をしたところ、次の様に表示されました。

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

意味としては、
リモートの task2-1 ブランチに対して、ローカルのtask2-1ブランチが1コミット進んでます。
"git push" 使って、あなたのローカルのコミットを公開してください。

と言われています。

初学者向けに「コミットが進んでいる」ということがどういうことかといいますと、コミットが1つ多い、と言う意味です。
(当てはまる言葉が見つからないので見つかりましたが追記します。)

したがって、指示にしたがっても良いのであれば従いましょう。

ローカルリポジトリの task2-1 ブランチのコミットを
リモートリポジトリの master ブランチに push すればOKです。

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

の書き方になります。

この書き方で、

[ローカルブランチ]を[リモートブランチ]に pushできます。

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?