update packages
This commit is contained in:
8
lisp/magit/git-hooks/applypatch-msg
Executable file
8
lisp/magit/git-hooks/applypatch-msg
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/commit-msg
Executable file
8
lisp/magit/git-hooks/commit-msg
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/fallthrough
Executable file
8
lisp/magit/git-hooks/fallthrough
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/fsmonitor-watchman
Executable file
8
lisp/magit/git-hooks/fsmonitor-watchman
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/p4-changelist
Executable file
8
lisp/magit/git-hooks/p4-changelist
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/p4-post-changelist
Executable file
8
lisp/magit/git-hooks/p4-post-changelist
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/p4-pre-submit
Executable file
8
lisp/magit/git-hooks/p4-pre-submit
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/p4-prepare-changelist
Executable file
8
lisp/magit/git-hooks/p4-prepare-changelist
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/post-applypatch
Executable file
8
lisp/magit/git-hooks/post-applypatch
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/post-checkout
Executable file
8
lisp/magit/git-hooks/post-checkout
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
13
lisp/magit/git-hooks/post-commit
Executable file
13
lisp/magit/git-hooks/post-commit
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ "$INSIDE_EMACS" == *magit ]]
|
||||
then
|
||||
for arg in "$@"; do args+="\"$arg\""; done
|
||||
$GIT_EDITOR --eval \
|
||||
"(magit-run-git-hook '(common-post-commit post-commit) ${args[@]})"
|
||||
fi
|
||||
|
||||
if [[ -x "$SHADOWED_GITHOOK_DIRECTORY" ]]
|
||||
then
|
||||
"$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/post-index-change
Executable file
8
lisp/magit/git-hooks/post-index-change
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
13
lisp/magit/git-hooks/post-merge
Executable file
13
lisp/magit/git-hooks/post-merge
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ "$INSIDE_EMACS" == *magit ]]
|
||||
then
|
||||
for arg in "$@"; do args+="\"$arg\""; done
|
||||
$GIT_EDITOR --eval \
|
||||
"(magit-run-git-hook '(common-post-commit post-merge) ${args[@]})"
|
||||
fi
|
||||
|
||||
if [[ -x "$SHADOWED_GITHOOK_DIRECTORY" ]]
|
||||
then
|
||||
"$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/post-receive
Executable file
8
lisp/magit/git-hooks/post-receive
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
13
lisp/magit/git-hooks/post-rewrite
Executable file
13
lisp/magit/git-hooks/post-rewrite
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ "$INSIDE_EMACS" == *magit ]]
|
||||
then
|
||||
for arg in "$@"; do args+="\"$arg\""; done
|
||||
$GIT_EDITOR --eval \
|
||||
"(magit-run-git-hook '(common-post-commit post-rewrite) ${args[@]})"
|
||||
fi
|
||||
|
||||
if [[ -x "$SHADOWED_GITHOOK_DIRECTORY" ]]
|
||||
then
|
||||
"$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/post-update
Executable file
8
lisp/magit/git-hooks/post-update
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-applypatch
Executable file
8
lisp/magit/git-hooks/pre-applypatch
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-auto-gc
Executable file
8
lisp/magit/git-hooks/pre-auto-gc
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-commit
Executable file
8
lisp/magit/git-hooks/pre-commit
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-merge-commit
Executable file
8
lisp/magit/git-hooks/pre-merge-commit
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-push
Executable file
8
lisp/magit/git-hooks/pre-push
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-rebase
Executable file
8
lisp/magit/git-hooks/pre-rebase
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/pre-receive
Executable file
8
lisp/magit/git-hooks/pre-receive
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/prepare-commit-msg
Executable file
8
lisp/magit/git-hooks/prepare-commit-msg
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/proc-receive
Executable file
8
lisp/magit/git-hooks/proc-receive
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/push-to-checkout
Executable file
8
lisp/magit/git-hooks/push-to-checkout
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/reference-transaction
Executable file
8
lisp/magit/git-hooks/reference-transaction
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/sendemail-validate
Executable file
8
lisp/magit/git-hooks/sendemail-validate
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
8
lisp/magit/git-hooks/update
Executable file
8
lisp/magit/git-hooks/update
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
hook="$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)"
|
||||
|
||||
if [[ -x "$hook" ]]
|
||||
then
|
||||
"$hook" "$@"
|
||||
fi
|
||||
Reference in New Issue
Block a user