Changes between Version 2 and Version 3 of u/erica/GitRepos


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

Legend:

Unmodified
Added
Removed
Modified
  • u/erica/GitRepos

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