[git-delete-branch] Added the $1
This commit is contained in:
parent
7ab0fda74f
commit
e2603d5006
@ -10,21 +10,36 @@ function delete_remote_branch() {
|
|||||||
git push origin --delete "$1"
|
git push origin --delete "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
echo
|
function list_of_the_branches() {
|
||||||
echo "List of branches:"
|
echo
|
||||||
echo -e "$(git branch)"
|
echo "List of branches:"
|
||||||
echo
|
echo -e "$(git branch)"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
BRANCH="$1"
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
read -p "Select branch to remove: " BRANCH
|
[ -z "$BRANCH" ] && {
|
||||||
|
list_of_the_branches
|
||||||
|
read -p "Select branch to remove: " BRANCH
|
||||||
|
}
|
||||||
|
echo "$BRANCH"
|
||||||
read -p "Remove locally / remote / both [L/R/B]: " CHOOSE
|
read -p "Remove locally / remote / both [L/R/B]: " CHOOSE
|
||||||
case $CHOOSE in
|
case $CHOOSE in
|
||||||
[Bb]*)
|
[Bb]*)
|
||||||
delete_local_branch "$BRANCH"
|
delete_local_branch "$BRANCH"
|
||||||
delete_remote_branch "$BRANCH"
|
delete_remote_branch "$BRANCH"
|
||||||
;;
|
unset -f BRANCH
|
||||||
[Ll]*) delete_local_branch "$BRANCH" ;;
|
;;
|
||||||
[Rr]*) delete_remote_branch "$BRANCH" ;;
|
[Ll]*)
|
||||||
*) echo "Please write good answer" ;;
|
delete_local_branch "$BRANCH"
|
||||||
|
unset -f BRANCH
|
||||||
|
;;
|
||||||
|
[Rr]*)
|
||||||
|
delete_remote_branch "$BRANCH"
|
||||||
|
unset -f BRANCH
|
||||||
|
;;
|
||||||
|
*) echo "Please write good answer" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user