diff options
-rwxr-xr-x[-rw-r--r--] | fastforwardotherbranch.sh | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/fastforwardotherbranch.sh b/fastforwardotherbranch.sh index 4b6d1e9a4..f710b052c 100644..100755 --- a/fastforwardotherbranch.sh +++ b/fastforwardotherbranch.sh @@ -1,23 +1,23 @@ -#!/bin/sh
-
-BRANCH=master
-NEWER=origin/master
-
-if [ $(git symbolic-ref HEAD) = "refs/heads/$BRANCH" ]
-then
- echo "This doesn't make sense if you're already on the branch '$BRANCH'"
- echo "Just run: git merge $NEWER"
- exit 1
-fi
-
-BRANCH_HASH=$(git rev-parse $BRANCH)
-NEWER_HASH=$(git rev-parse $NEWER)
-MERGE_BASE=$(git merge-base $BRANCH_HASH $NEWER_HASH)
-
-if [ "$MERGE_BASE" = "$BRANCH_HASH" ]
-then
- git update-ref "refs/heads/$BRANCH" "$NEWER_HASH" "$BRANCH_HASH"
-else
- echo "$BRANCH can't be fast-forwarded to $NEWER"
- exit 1
-fi
+#!/bin/sh + +BRANCH=master +NEWER=origin/master + +if [ $(git symbolic-ref HEAD) = "refs/heads/$BRANCH" ] +then + echo "This doesn't make sense if you're already on the branch '$BRANCH'" + echo "Just run: git merge $NEWER" + exit 1 +fi + +BRANCH_HASH=$(git rev-parse $BRANCH) +NEWER_HASH=$(git rev-parse $NEWER) +MERGE_BASE=$(git merge-base $BRANCH_HASH $NEWER_HASH) + +if [ "$MERGE_BASE" = "$BRANCH_HASH" ] +then + git update-ref "refs/heads/$BRANCH" "$NEWER_HASH" "$BRANCH_HASH" +else + echo "$BRANCH can't be fast-forwarded to $NEWER" + exit 1 +fi |