Skip to content

Instantly share code, notes, and snippets.

View datawench's full-sized avatar

datawench datawench

View GitHub Profile

Keybase proof

I hereby claim:

  • I am datawench on github.
  • I am datawench (https://keybase.io/datawench) on keybase.
  • I have a public key ASCJj9GQkhRblR72zVdRRCgXEyAUQq1KspM4NYRLdhSTgQo

To claim this, I am signing this object:

@datawench
datawench / gist:4e3697ac04341cb715844a2816433a99
Created March 31, 2017 13:29
Convert a branch from wip into a clean hotfix for production
git checkout <your-branch>
git diff -p --binary wip > /tmp/git.patch
git checkout production
git checkout -b <HOTFIX-new-branch-name>
git apply --ignore-whitespace /tmp/git.patch