You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
The text was updated successfully, but these errors were encountered: