私はここで何が起こっているgit checkout bugfix/NTP-183-datefns
git checkoutの差分チェックアウト元/ <branch-name>とgit checkout <branch-name>?
Switched to branch 'bugfix/NTP-183-datefns'
Your branch is up-to-date with 'origin/bugfix/NTP-183-datefns'.
をしようとしたとき、私はしかしgit checkout origin/bugfix/NTP-183-datefns
Gitは
Note: checking out 'origin/bugfix/NTP-183-datefns'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at 6fd089d.
示し行うと?
私はこの質問をよく理解していません。 「ここで何が起こっているのですか?」というのは、あなたが既に投稿したテキストによってかなりよく説明されているようです。理解できない部分がある場合は、それがどの部分であるか説明してください。ちょうどfyi、あなたはリモートブランチをチェックアウトすることができません、それはあなたがそれを試みるときに分離頭部の状態で終わった理由です。 –