-
Notifications
You must be signed in to change notification settings - Fork 1.1k
How To Check Version History
Bartosz Firyn edited this page Jan 26, 2018
·
7 revisions
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.
Use milestones view:
(don't forget to clear milestones filter to go back to normal issues view)
Use gitk
tool in cloned repository:
$ git clone git://github.com/sarxos/webcam-capture.git
$ cd webcam-capture
$ gitk --all
There is also CHANGELOG.htm
file in ZIP assembly available for each release. The ZIP files can be downloaded from my private repository.
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'