Created
October 16, 2020 20:11
-
-
Save r10r/9180193677ecd33d367687c30c8737d1 to your computer and use it in GitHub Desktop.
go fmt pre-commit hook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in $(git diff --cached --name-only --diff-filter=ACMRTUXB | grep "\.go") | |
do | |
echo "(gofmt) $file" | |
gofmt -w $file | |
git add "$file" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment