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
git-cliff currently supports printing out the context via -x argument:
git-cliff
-x
$ git cliff -x | jq . | head -n 5 [ { "version": null, "commits": [ {
It would be nice to generate a changelog from this JSON context as well.
A new command-line argument might be introduced or we can take the context from stdin:
stdin
$ git-cliff -x > context.json $ git-cliff --from-context context.json -o CHANGELOG.md $ cat context.json | git-cliff
None.
https://git-cliff.org/docs/templating/context
closes #773
The text was updated successfully, but these errors were encountered:
--context
Successfully merging a pull request may close this issue.
Is there an existing issue or pull request for this?
Feature description
git-cliff
currently supports printing out the context via-x
argument:It would be nice to generate a changelog from this JSON context as well.
Desired solution
A new command-line argument might be introduced or we can take the context from
stdin
:Alternatives considered
None.
Additional context
https://git-cliff.org/docs/templating/context
closes #773
The text was updated successfully, but these errors were encountered: