git-delete-branch: Changed logic from and to or in both
This commit is contained in:
parent
6bc94e1518
commit
b044d7a9b3
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
# shellcheck disable=2162
|
# shellcheck disable=2162
|
||||||
|
|
||||||
function delete_local_branch(){
|
function delete_local_branch() {
|
||||||
git branch -D "$1"
|
git branch -D "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
function delete_remote_branch(){
|
function delete_remote_branch() {
|
||||||
git push origin --delete "$1"
|
git push origin --delete "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -19,9 +19,12 @@ while true; do
|
|||||||
read -p "Select branch to remove: " BRANCH
|
read -p "Select branch to remove: " 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]* ) delete_local_branch "$BRANCH" && delete_remote_branch "$BRANCH" ;;
|
[Bb]*)
|
||||||
[Ll]* ) delete_local_branch "$BRANCH";;
|
delete_local_branch "$BRANCH"
|
||||||
[Rr]* ) delete_remote_branch "$BRANCH";;
|
delete_remote_branch "$BRANCH"
|
||||||
* ) echo "Please write good answer";;
|
;;
|
||||||
|
[Ll]*) delete_local_branch "$BRANCH" ;;
|
||||||
|
[Rr]*) delete_remote_branch "$BRANCH" ;;
|
||||||
|
*) echo "Please write good answer" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user