We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 ?
The text was updated successfully, but these errors were encountered:
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
Sorry, something went wrong.
chemidy
No branches or pull requests
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 ?
The text was updated successfully, but these errors were encountered: