show amount of W-I-P commits
This commit is contained in:
parent
f461e4ac4d
commit
b731c6e237
|
@ -1,14 +1,15 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
wips=$(git log --oneline --no-decorate | grep -i wip )
|
wips=$(git log --oneline --no-decorate | grep -i wip )
|
||||||
|
wips_n=$(echo "$wips" | wc -l)
|
||||||
|
|
||||||
if [[ -n "$wips" ]]; then
|
if [[ -n "$wips" ]]; then
|
||||||
# Allows us to read user input below, assigns stdin to keyboard
|
# Allows us to read user input below, assigns stdin to keyboard
|
||||||
exec < /dev/tty
|
exec < /dev/tty
|
||||||
echo "contains WIP commit"
|
echo "contains $wips_n WIP commit(s)"
|
||||||
read -p "Really push? (Y/N)" -n 1 -r
|
read -p "Really push? (Y/N) " -n 1 -r
|
||||||
case "$REPLY" in
|
case "$REPLY" in
|
||||||
y|Y ) echo "continuing...";;
|
y|Y ) echo -e "\ncontinuing...";;
|
||||||
* ) echo "aborting."; exit 1;;
|
* ) echo -e "\naborting."; exit 1;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue