Twenga / twgit

Twgit is a free and open source assisting tools for managing features, hotfixes and releases on Git repositories. It provides simple, high-level commands to adopt the branching model describes in our documentation. Supported OS: Debian/Ubuntu Linux, Mac OS X 10.8 (Mountain Lion) or lower.
http://twgit.twenga.com/
Other
111 stars 34 forks source link

Add commit description of hotfix on tag list #89

Closed chemidy closed 11 years ago

chemidy commented 11 years ago

when we launch => twgit tag list, if this is a hotfix without features included, they are no description available for the hotfix.

Is it possible to show all comments for this hotfix as a description ?

chemidy commented 11 years ago

We can show only the last commit info with

=> git log --no-merges --pretty='%s' -n 1 $tag

Or We can show all commit infos with

=> git log --no-merges --pretty="%s" $previous_tag..$tag | grep -v 'twgit'

But for 99% of hotfix, there will be only one commit on hotfix

For now i show only the last commit