summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbackflip6
1 files changed, 3 insertions, 3 deletions
diff --git a/backflip b/backflip
index c7e90a8..60bee04 100755
--- a/backflip
+++ b/backflip
@@ -55,7 +55,7 @@ forge_entry() {
| awk '$1 ~ /^2.*$/ {print "\t"$0} $1 !~ /^2.*$/ {print $0}' >> $2.bcp
print_info "${bold}Forged ChangeLog entry:${NC}"
cat $2.bcp
- ask "${bold}Editing [N/y] ?" user_edit
+ ask "${bold}Edit ChangeLog entry [N/y] ?" user_edit
if [ "$user_edit" == "y" ]; then
"$EDITOR" $2.bcp
fi
@@ -66,8 +66,8 @@ print_step "Finding SHA1"
# ==============================================================================
SHA1=`git log --format=format:"%H" --grep=trunk@${1} master`
print_info "${NC}SVN rev ${bold}${1}${NC} SHA1: ${bold}${SHA1}${NC}"
-ask "${bold}Watch the commit [N/y] ?" user_watch
-if [ "$user_watch" == "y" ]; then
+ask "${bold}View the commit [N/y] ?" user_view
+if [ "$user_view" == "y" ]; then
git show $SHA1
fi