Last active
December 11, 2015 11:28
-
-
Save lexaurin/4593509 to your computer and use it in GitHub Desktop.
How to manage changelog by git tags? Prefix tags with "v" letter and use this alias:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
changelog = "!git tag -l v* -n20 | sed -n 'H;${;g;s/\\n[^v]/\\x00/g;p}' | sort -rV | tr \\\\000 \\\\n | less" |
Rev2 by https://twitter.com/pracj3am bez použití /tmp
A nakonec stejně skončíš takhle, pokud neuděláš s každým commitem rovnou nový tag:
0.8.0 Releasing 0.8.0
0.8.1 Releasing 0.8.1
0.8.2 Releasing 0.8.2
0.8.3 Releasing 0.8.3
0.8.4 Releasing 0.8.4
0.9.0 Releasing 0.9.0
0.9.1 Releasing 0.9.1
0.9.2 Releasing 0.9.2
0.9.3 Release 0.9.3
0.9.4 Releasing 0.9.4
0.9.5 Releasing 0.9.5
0.9.7 Releasing 0.9.7
to hroncok:
My tohle pouzivame na verzovani knihoven. Piseme srozumitelne zpravy commitu a pridavame neanotovane znacky. Pokud je popis commitu nesrozumitelny, pridame na nej znacku anotovanou. Funguje to pekne, viz ukazka:
v5.0 Přidána podpora pro UI komponentový strom via nx\Component,
přidáno rozhraní nx\IComponentFactory; nx\Layout je také komponenta.
BC break: nx\Component vyžaduje v konstruktoru implementaci nx\IComponentFactory
v4.19 Aktualizace nette na v2.0.3
v4.18 Aktualizace Nette na v2.0.2
v4.17 Přidána interface \nx\Router, do \nx\latte\Factory přidána nepovinná
závislost na \Nette\Caching\IStorage a \nx\Router.
v4.16 Pridani memory do diagnostiky
v4.15 Aktualizace Nette na v2.0.1
v4.14 Pridani bezpecneho FileJournal
v4.13 Presunuti __call do Layout
v4.12 Aktualizace dokumentace
v4.10 Uprava quickhelp close button
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rev1 https://twitter.com/Ondra42