Skip to content

Instantly share code, notes, and snippets.

@robertranjan
robertranjan / pre-commit.md
Last active April 30, 2024 08:27
pre-commit hook to prevent binary check-ins

Navigate to hooks folder and make pre-commit script

cd ${GIT_REOP}/.git/hooks
cp pre-commit.sample pre-commit 

Add below code to pre-comit script

function checkForBinaries() {
    binaryFilesCount=0

echo "PWD: ${PWD}"