Skip to content

Instantly share code, notes, and snippets.

View davidzech's full-sized avatar

David Zech davidzech

View GitHub Profile
#!/bin/bash
# check for -f flag as first argument; if present, bypass all restrictions
if [[ "$1" == "-f" ]]; then
shift
git-commit $@
exit 0
fi
fail()