liquibase/liquibase-data

Issues in tutorial

BertNienhuis opened this issue · 2 comments

When following the tutorial, i first got a unhandled exception because GIT was not installed. Maybe that should be a system requirement in the beginning of tutorial.

After installing GIT and initializing a git repository i still got this message?
image

What to do next?

mcred commented

When creating commits, liquibase data will use your git configuration to determine the name and email address to use by running git config user.name and git config user.email. If you have not configured git before, you can run git config --global user.name <name> and git config --global user.email <email> to set these values.

Yes, this fixes the issue! Thx