Skip to content

Instantly share code, notes, and snippets.

@nvalentine-puppetlabs
Last active December 22, 2015 20:29
Show Gist options
  • Save nvalentine-puppetlabs/6527124 to your computer and use it in GitHub Desktop.
Save nvalentine-puppetlabs/6527124 to your computer and use it in GitHub Desktop.
Create a 'dev' branch and get rid of 'master' both local and remote.
$ git checkout -b dev
$ git branch -D master
$ git push --delete origin master
$ git push --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment