| 58 | |
| 59 | Once you have done this, then you want to merge it with your working branch, |
| 60 | |
| 61 | {{{ |
| 62 | git merge your_new_branch |
| 63 | }}} |
| 64 | |
| 65 | Once this is merged, you then want to push those changes back into the repo., |
| 66 | |
| 67 | {{{ |
| 68 | git push |
| 69 | }}} |
| 70 | |
| 71 | *Note here, I think you can only 'copy' things back into the central repo that have been 'checked in'. |
| 72 | |
| 73 | This will push whatever branch you are on back into the central repo (so for this example, that is the development branch). |
| 74 | |
| 75 | Once you are done with your edits, you can delete your local copies of the repos with, |
| 76 | |
| 77 | {{{ |
| 78 | git delete |
| 79 | }}} |
| 80 | |
| 81 | (although, why is this necessary, can't you just delete your local copies by deleting the whole directory?) |
| 82 | |
| 83 | and can delete your branch in the central repo with the command, |
| 84 | |
| 85 | |