We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebe6f2 commit 9c688aaCopy full SHA for 9c688aa
1 file changed
README.md
@@ -61,15 +61,15 @@ also keeps your scripts organized.)
61
stash_work
62
local branch="$(current_branch)"
63
if [[ "$branch" == "master" ]]; then
64
- message "Pushing changes from master into server"
+ echo "Pushing changes from master into server"
65
git_push
66
else
67
- message "Pushing changes from $branch into master"
+ echo "Pushing changes from $branch into master"
68
git checkout master
69
git merge "$branch"
70
71
72
- message "Going back to $branch branch"
+ echo "Going back to $branch branch"
73
git checkout "$branch"
74
git rebase master
75
fi
0 commit comments