Created
October 8, 2015 14:24
-
-
Save LayneSmith/99cb92e4150e3e977dc0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| ///Branching an existing branch | |
| git pull origin <original branch name> | |
| git checkout <original branch name> | |
| git checkout -b <new branch name> | |
| # Edit some files | |
| git add . | |
| git commit -m “Added some stuff” | |
| git push origin <new branch name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment