8 lines
274 B
Bash
8 lines
274 B
Bash
#!/bin/sh
|
|
# Tier 2 autonomous mode: `git push` is disabled.
|
|
# The user pushes the branch manually from the main repo after review.
|
|
|
|
echo "ERROR: Tier 2 autonomous mode: 'git push' is disabled." >&2
|
|
echo "Push the branch manually from the main repo after review." >&2
|
|
exit 1
|