| 55 | | This creates the new branch and switches to it, but '''does not change your working files'''. Now you can safely commit on the branch. [http://stackoverflow.com/questions/2569459/git-create-a-branch-from-unstagged-uncommited-changes-on-master Stackoverflow link] |
| | 55 | This creates the new branch and switches to it, but '''does not change your working files'''. Now you can safely commit on the branch [http://stackoverflow.com/questions/2569459/git-create-a-branch-from-unstagged-uncommited-changes-on-master Stackoverflow link]. Then to push to the master repo: |
| | 56 | {{{ |
| | 57 | git push origin <new-branch-name> |
| | 58 | }}} |
| | 59 | That will create `<new-branch-name>` in the master repo if it does not already exist. |