July 2018
Intermediate to advanced
354 pages
10h 57m
English
You are now ready to look through the commit log for commit messages that describe the bugs fixed.
$ git describe v3.1.0.201310021548-r-96-gb14a939
The preceding output tells us three things:
Now, the log can be parsed from HEAD to v3.1.0.201310021548-r. But just running git log 3.1.0.201310021548-r..HEAD will give us all 96 commits, and we just want the commits with the commit messages that contain "Bug: xxxxxx" for our release note. The xxxxxx is an ...
Read now
Unlock full access