--no-commit Perform the merge at the and of pull but do not autocommit, to have the chance to inspect and further tweak the merge result before committing.
--no-commit Perform the merge at the and of pull but do not autocommit, to have the chance to inspect and further tweak the merge result before committing.
--changed-only Download or pull only files changed since the deployed commit while ignoring all other files.
--changed-only Download or pull only files changed since the deployed commit while ignoring all other files.
--no-verify Bypass the pre-ftp-push hook.
--no-verify Bypass the pre-ftp-push hook.
--no-post-hooks Bypass the post-ftp-push hook.
--enable-post-errors Fails if post-ftp-push hook raises an error
--enable-post-errors Fails if post-ftp-push hook raises an error
--disable-epsv Tell curl to disable the use of the EPSV command when doing passive FTP transfers. Curl will normally always first attempt to use EPSV before PASV, but with this option, it will not try using EPSV.
--disable-epsv Tell curl to disable the use of the EPSV command when doing passive FTP transfers. Curl will normally always first attempt to use EPSV before PASV, but with this option, it will not try using EPSV.
--auto-init Automatically run init action when running push action
--auto-init Automatically run init action when running push action
@ -562,7 +564,7 @@ pre_push_hook() {
fi
fi
local hook="$hooks_dir/pre-ftp-push"
local hook="$hooks_dir/pre-ftp-push"
if [ "$EXECUTE_HOOKS" -eq 1 -a -e "$hook" ]; then
if [ "$EXECUTE_PRE_HOOKS" -eq 1 -a -e "$hook" ]; then