GitHub: find out if git compilation is included in the release?

I am trying to find out if git commit is included in the release, but it seems to work hard through the github.com website.

this is the commit I want to know if it is included in the release

      https://github.com/docker/toolbox/pull/122/commits

Does anyone know the steps to confirm this.

Any help really appreciated

thanks

+4
source share
1 answer

You can use the command git log --grep=<message>. part of the message will work. After the match, you will see the details of the commit.

Example:

git log --grep='pull/122/commits'

Executing this row of this repository does not return results, which means that this pull request is not yet merged.

You can check the command, for example, to see the results:

git log --oneline --grep='version'
+3

Source: https://habr.com/ru/post/1609527/


All Articles