How To Check Version History - sarxos/webcam-capture GitHub Wiki
Sometimes it very important to check what changes has been a incorporated in particular version. For Webcam Capture project there are two ways do do that.
The Easy Way
Use milestones view:
(don't forget to clear milestones filter to go back to normal issues view)
The Hard Way
Use gitk
tool in cloned repository:
$ git clone git://github.com/sarxos/webcam-capture.git
$ cd webcam-capture
$ gitk --all
ZIP Assembly
There is also CHANGELOG.htm
file in ZIP assembly available for each release. The ZIP files can be downloaded from my private repository.
That Sucks, I Need Some Listing!
Sure, please see all changes listed for specific release:
- v0.3.9
- v0.3.8
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- (everything earlier is like a dinosaurs, pretty damn old)
Just for my memory - to generate log for each release (replace version-tag with specific versions):
$ git log \
[version-tag]..[version-tag] --first-parent \
--pretty=format:'* [`%h`](https://github.com/sarxos/webcam-capture/commit/%h) | %s'