I wrote a script that generates Readme.md
file (for GitHub) by scanning the source code. Everytime before I make a new commit, I run this script manually to update Readme.md
. It sure would be better if this job being done automatically.
Currently I'm using pre-commit
git hook, which works only partly. The Readme.md
file gets updated, however the update is not part of this commit. I have to include it in the next commit.
Is there a way to run this script and make the update part of this commit?