Skip to content

Commit 9c688aa

Browse files
committed
docs
1 parent aebe6f2 commit 9c688aa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ also keeps your scripts organized.)
6161
stash_work
6262
local branch="$(current_branch)"
6363
if [[ "$branch" == "master" ]]; then
64-
message "Pushing changes from master into server"
64+
echo "Pushing changes from master into server"
6565
git_push
6666
else
67-
message "Pushing changes from $branch into master"
67+
echo "Pushing changes from $branch into master"
6868
git checkout master
6969
git merge "$branch"
70-
message "Pushing changes from master into server"
70+
echo "Pushing changes from master into server"
7171
git_push
72-
message "Going back to $branch branch"
72+
echo "Going back to $branch branch"
7373
git checkout "$branch"
7474
git rebase master
7575
fi

0 commit comments

Comments
 (0)