maltzj / google-style-precommit-hook

A pre-commit hook which will automatically format your code with google's codestyle guidelines!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Re-add the new files that have been commited

addisoc opened this issue · comments

Not sure if this project is still being maintained, but for me I copied the script over to the pre-commit script and it works almost exactly as I need. The only problem is that after the formatting is done the new changes are not committed and need to added again so to remedy this I added this line to the very end of the file.
git add $changed_java_files

Now when the pre-commit script runs it auto-formats the code and then commits the changes in the same commit

Please don't do this. I frequently stage only some of a file using git gui (or similar tools), leaving out lines that I have added just for testing and debugging, or that should be part of a separate commit. This change would cause my work to get seriously messed up.