Files
2023-04-07 22:45:09 +01:00

7 lines
137 B
Bash

#!/usr/bin/env bash
if [[ $(git branch --show-current) == "main" ]]; then
git checkout -B release
git push -u origin release
fi