Skip to content

Instantly share code, notes, and snippets.

@pherrymason
Created September 30, 2013 09:45
Show Gist options
  • Save pherrymason/6761556 to your computer and use it in GitHub Desktop.
Save pherrymason/6761556 to your computer and use it in GitHub Desktop.
Cómo crear una nueva rama de la nada
git checkout --orphan newbranch
git rm -rf .
<do work>
git add your files
git commit -m 'Initial commit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment