Add alias to local git push, runs git-push-custom.sh

This commit is contained in:
AllSpiceAlice 2025-02-28 17:03:06 +00:00
parent ad04c76a4b
commit 18c0568032

View File

@ -186,14 +186,25 @@ log_header "Checking out git-svn branch" cyan
git checkout git-svn
git push
# Setup hooks
log_header "Set core.hooksPath to .git/hooks" cyan
git config --local core.hooksPath .git/hooks
log_header "Downloading pre-push hook" cyan
curl -L -o $USERPROFILE/allspice/$REPO_NAME/.git/hooks/pre-push https://hub.allspice.io/AllSpice-Demos/AllSpice-Loves-SVN-Monorepos/raw/branch/main/.allspice/pre-push
log_header "Downloading push alias wrapper" cyan
curl -L -o $USERPROFILE/allspice/$REPO_NAME/.allspice/git-push-custom.sh https://hub.allspice.io/AllSpice-Demos/AllSpice-Loves-SVN-Monorepos/raw/branch/main/.allspice/git-push-custom.sh
log_header "Making pre-push hook executable" cyan
chmod +x $USERPROFILE/allspice/$REPO_NAME/.git/hooks/pre-push
log_header "Making push alias wrapper executable" cyan
chmod +x $USERPROFILE/allspice/$REPO_NAME/.allspice/git-push-custom.sh
log_header "Apply alias to push, push now runs git-push-custom.sh" cyan
git config --local alias.push-custom '!.allspice/git-push-custom.sh'
# log_header "Downloading pre-push hook" cyan
# curl -L -o $USERPROFILE/allspice/$REPO_NAME/.git/hooks/pre-push https://hub.allspice.io/AllSpice-Demos/AllSpice-Loves-SVN-Monorepos/raw/branch/main/.allspice/pre-push
# log_header "Making pre-push hook executable" cyan
# chmod +x $USERPROFILE/allspice/$REPO_NAME/.git/hooks/pre-push
log_header "Downloading fetch-svn.bat to $USERPROFILE/allspice/$REPO_NAME" cyan
curl -L -o $USERPROFILE/allspice/$REPO_NAME/fetch-svn.bat https://hub.allspice.io/AllSpice-Demos/AllSpice-Loves-SVN-Monorepos/raw/branch/main/.allspice/fetch-svn.bat