Skip to content

Instantly share code, notes, and snippets.

@r10r
Created October 16, 2020 20:11
Show Gist options
  • Save r10r/9180193677ecd33d367687c30c8737d1 to your computer and use it in GitHub Desktop.
Save r10r/9180193677ecd33d367687c30c8737d1 to your computer and use it in GitHub Desktop.
go fmt pre-commit hook
#!/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