Changes between Version 16 and Version 17 of Developer/Git/Committers


Ignore:
Timestamp:
11/21/13 03:16:41 (10 years ago)
Author:
JoelSherrill
Comment:

/* Committing */

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Git/Committers

    v16 v17  
    177177}}}
    178178The git log stage will show your newly pushed patches if everything worked properly, and you can delete the am branch created. The git push at the end will push the changes up to your personal repository.
     179
     180Another way to do this which pushes directly to the upstream is shown here in an example which simply (and quickly) applies a patch to the branch:
     181
     182{{{
     183git checkout -b rtems4.10 --track remotes/upstream/4.10
     184cat /tmp/sp.diff | patch
     185vi sparc.t
     186git add sparc.t
     187git commit -m "sparc.t: Correct for V8/V9"
     188git push upstream rtems4.10:4.10
     189git checkout master
     190git log
     191git branch -d rtems4.10
     192}}}
    179193=  Ooops!  =
    180194