You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a few commits (git commit -m "<any message>")
Execute reflog command (git reflog)
Expected result: for each entry in the reflog that the reason is a commit, the expected format is <commit id> HEAD@{<integer>}: commit: <commit message>
Actual result: for each entry in the reflog that the reason is a commit, the current format is <commit id> HEAD@{<integer>}: commit:. Note that the commit message does not exist.
See screenshot below:
The commit message is important because an important use case of the reflog is to recover lost commits, in which case the user recovers through the message
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
git commit -m "<any message>"
)git reflog
)Expected result: for each entry in the reflog that the reason is a commit, the expected format is
<commit id> HEAD@{<integer>}: commit: <commit message>
Actual result: for each entry in the reflog that the reason is a commit, the current format is
<commit id> HEAD@{<integer>}: commit:
. Note that the commit message does not exist.See screenshot below:
The commit message is important because an important use case of the reflog is to recover lost commits, in which case the user recovers through the message
The text was updated successfully, but these errors were encountered: