Changes between Version 8 and Version 9 of GitCrashCourse


Ignore:
Timestamp:
05/19/11 14:49:06 (13 years ago)
Author:
David Sommerseth
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitCrashCourse

    v8 v9  
    253253 }}}
    254254
    255 and follow the instructions you're given.  That's all.
     255and follow the instructions you're given.
     256
     257As a simpler alternative, you can also combine the ''git format-patch'' and ''git send-email'' commands by doing this:
     258
     259 {{{
     260 git send-email --to {email address} HEAD~1
     261 }}}
     262
     263This will send the last commit to the given mail address.  If you change HEAD~1 to HEAD~4, the 4 last commits will be sent.
    256264
    257265== Checkout a branch ==