lfs-hook-test/.githooks/post-merge

4 lines
191 B
Bash
Executable file

#!/bin/sh
# LFS post-merge passthrough (required when core.hooksPath = .githooks)
command -v git-lfs >/dev/null 2>&1 || { git lfs version >/dev/null 2>&1 || exit 0; }
git lfs post-merge "$@"