Select Git revision
freeradius_version.rb
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
recreate-test-branch.sh 411 B
#!/usr/bin/env bash
echo "Confirmez-vous la création d'une nouvelle branche 'test' à partir de la branche courante ? (Y/n) "
read doit
if [[ ${doit} != "Y" ]]; then
echo "Abandon."
exit 1
fi
git branch -d test && git push origin --delete test && \
git checkout -b test && git push --set-upstream origin test
echo ""
echo "/ATTENTION!\ Notez bien que vous êtes à présent sur la branche 'test'."