99# http://github.com/nvie/gitflow
1010#
1111# Copyright 2010 Vincent Driessen. All rights reserved.
12- #
12+ #
1313# Redistribution and use in source and binary forms, with or without
1414# modification, are permitted provided that the following conditions are met:
15- #
15+ #
1616# 1. Redistributions of source code must retain the above copyright notice,
1717# this list of conditions and the following disclaimer.
18- #
18+ #
1919# 2. Redistributions in binary form must reproduce the above copyright
2020# notice, this list of conditions and the following disclaimer in the
2121# documentation and/or other materials provided with the distribution.
22- #
22+ #
2323# THIS SOFTWARE IS PROVIDED BY VINCENT DRIESSEN ``AS IS'' AND ANY EXPRESS OR
2424# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2525# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
3030# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3131# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
3232# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33- #
33+ #
3434# The views and conclusions contained in the software and documentation are
3535# those of the authors and should not be interpreted as representing official
3636# policies, either expressed or implied, of Vincent Driessen.
@@ -244,7 +244,7 @@ cmd_finish() {
244244 # TODO: detect that we're working on the correct branch here!
245245 # The user need not necessarily have given the same $NAME twice here
246246 # (although he/she should).
247- #
247+ #
248248
249249 # TODO: git_is_clean_working_tree() should provide an alternative
250250 # exit code for "unmerged changes in working tree", which we should
@@ -270,7 +270,7 @@ cmd_finish() {
270270 echo "Merge conflicts not resolved yet, use:"
271271 echo " git mergetool"
272272 echo " git commit"
273- echo
273+ echo
274274 echo "You can then complete the finish by running it again:"
275275 echo " git flow feature finish $NAME"
276276 echo
@@ -324,7 +324,7 @@ cmd_finish() {
324324 echo "There were merge conflicts. To resolve the merge conflict manually, use:"
325325 echo " git mergetool"
326326 echo " git commit"
327- echo
327+ echo
328328 echo "You can then complete the finish by running it again:"
329329 echo " git flow feature finish $NAME"
330330 echo
@@ -344,8 +344,8 @@ helper_finish_cleanup() {
344344 if flag fetch; then
345345 git push "$ORIGIN" ":refs/heads/$BRANCH"
346346 fi
347-
348-
347+
348+
349349 if noflag keep; then
350350 if flag force_delete; then
351351 git branch -D "$BRANCH"
0 commit comments