Skip to content

Instantly share code, notes, and snippets.

@sobanvuex
Created July 23, 2015 17:20
Show Gist options
  • Save sobanvuex/d7d934dc88d784ca7118 to your computer and use it in GitHub Desktop.
Save sobanvuex/d7d934dc88d784ca7118 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
src='my-feature-branch'
dest='master'
git checkout ${src}
git format-patch ${dest} --stdout > verify.patch
git checkout ${dest}
git apply verify.patch --check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment