8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(git rev-parse --show-toplevel)"
|
|
cd "$REPO_ROOT"
|
|
|
|
"$REPO_ROOT/scripts/git/pre-push-rebase.sh"
|