so I have an sh script that throws together some files then commits them to a git repo. How can I dynamically add the date to my commit message?
My .sh looks something like
// do things to files...
git add -u;
git commit -m 'generated files on <date here?>';
git push origin master;