Skip to content

Instantly share code, notes, and snippets.

@whoward
Created July 24, 2018 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whoward/d94964e1f5753389968dc7224ef45ae2 to your computer and use it in GitHub Desktop.
Save whoward/d94964e1f5753389968dc7224ef45ae2 to your computer and use it in GitHub Desktop.
Make a "Null" branch in git to enable a full code walkthrough via a pull request
#!/bin/sh
git checkout --orphan null
git rm --cached -r .
git commit --allow-empty -m 'null'
git push origin null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment