Lines Matching full:echo
32 echo " *** ERROR: " "$*"
38 echo "Squash merge a given branch into the current branch"
39 echo ""
40 echo "This command squash merges all commits from a given branch into the current branch"
41 …echo "By default, the changes are committed with a commit message which includes the list of all s…
42 echo "(use --no-commit and --no-list options to change default behavior)."
43 echo ""
44 echo "Usage: $(basename "$0") [--no-list] [--no-commit] <branch> [<commit msg>]"
45 echo ""
46 echo " <branch> Specifies the name of branch to merge into current branch"
47 echo " <commit msg> An optional parameter specifying text to add to the commit message"
48 echo "Options:"
49 echo " --no-list The commit message will not include the list of squashed commits"
50 echo " --no-commit Squash and stage the changes but do not commit "
51 echo ""
116 echo "No changes to commit when squash merging branch '$branch' into '$cur_branch'"
126 echo "${NEWLINE}Successfully squash merged branch '$branch' into '$cur_branch'"
128 … echo "Successfully prepared squash merge of branch '$branch' into '$cur_branch' - ready to commit"