Changes between Version 8 and Version 9 of u/erica/GitRepos
- Timestamp:
- 05/13/15 12:36:50 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
u/erica/GitRepos
v8 v9 48 48 }}} 49 49 50 This pushes (i.e. copies) your current working branch into the central repo. So if you are working on *your_new_branch, then it will push a copy of your_new_branch into the repo. 50 This pushes (i.e. copies) your current working branch into the central repo. So if you are working on *your_new_branch, then it will push a copy of your_new_branch into the repo. This means that other people would see your code if they download a clean version of the repo, or update theirs with a, 51 52 {{{ 53 git pull 54 git branch -a 55 }}} 51 56 52 57 Now, the procedure for pushing changes into the development branch goes as follows. Once your changes are ready to go into the dev branch, you want to switch back to the development branch and update it so that your changes are going to be merged with the ''newest'' version of the dev branch. You do this with,