I would like to use git as automated folder history. My flow is more or less like below:
- Make change in some files
- Git commit
- Run my command (for example
vagrant uporvagrant provision)
The ideas which are coming to my mind is:
1. Create an alias for my command (in bash or powershell depending on OS)
2. In alias always run git add . and git commit -m "txt" and after above run "real" command
But above idea looks quite ugly (for example "txt" is always static and doesn't describe anything). Does anybody see something better?