Created
September 30, 2013 09:45
-
-
Save pherrymason/6761556 to your computer and use it in GitHub Desktop.
Cómo crear una nueva rama de la nada
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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