Changes between Version 8 and Version 9 of u/erica/GitRepos


Ignore:
Timestamp:
05/13/15 12:36:50 (10 years ago)
Author:
Erica Kaminski
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • u/erica/GitRepos

    v8 v9  
    4848}}}
    4949
    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.
     50This 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{{{
     53git pull
     54git branch -a
     55}}}
    5156
    5257Now, 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,