Creating a Wappler Git Manager Changelog

Hi All

I'd like to create a very basic changelog, based on the Wappler Git manager - all I need is a list of dates, version numbers and tag descriptions - all of this is available in Wappler Git Manager.

Does anyone have any idea how Id access this information so I could create an expression with it and print a dump of it off to the browser?

You can't access the information directly in Wappler, use the git cli tool instead.

Git - git-log Documentation

1 Like

Thank you @patrick :slight_smile:

For anyone else wanting to do this, this command gives a one line record with a prettified date format then creates a txt file in the working directory:

git log --all --graph --decorate --pretty=format:"%h %ad %d %s" --date=short > commit-history.txt