Created
February 24, 2014 05:40
-
-
Save favila/9182537 to your computer and use it in GitHub Desktop.
git-squash: script to create a squashed patch from a branch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# Produce a squash-commit patch from a branch of changes | |
MASTER=$1 | |
PATCHBRANCH=$2 | |
SQUASHBRANCH="$PATCHBRANCH-squash" | |
MESSAGE=$3 | |
git checkout -b $SQUASHBRANCH $MASTER && | |
git merge --squash $PATCHBRANCH && | |
git commit -a -m "$MESSAGE" && | |
git format-patch $MASTER --stdout > $PATCHBRANCH.patch && | |
git checkout $PATCHBRANCH && | |
git branch -D $SQUASHBRANCH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment