5 lines
119 B
Bash
Executable File
5 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
# Pre-commit hook for clang-format
|
|
# Format staged changes before commit
|
|
git clang-format --staged --quiet
|