- Writing custom git flow scripts - a start

This commit is contained in:
Josako
2025-12-11 09:27:21 +01:00
parent 0f8bda0aef
commit fe9fc047ff
14 changed files with 720 additions and 0 deletions

10
scripts/git/gitflow Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Kleine wrapper zodat je gewoon `scripts/git/gitflow ...` kunt aanroepen
# zonder expliciet `python` te typen.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
cd "${PROJECT_ROOT}" || exit 1
exec python -m scripts.git.gitflow "$@"