14 lines
269 B
Bash
Executable file
14 lines
269 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
git () {
|
|
case "$1" in
|
|
commit)
|
|
shift
|
|
command git commit --no-verify "$@"
|
|
;;
|
|
*)
|
|
command git "$@"
|
|
;;
|
|
esac
|
|
}
|
|
. "$(systemd-path user-state-private)"/git-sync/git-sync "$@"
|