git.rst
changeset 2211 473f6c2b0fdf
parent 2209 6faf149a4f4c
child 2214 f7b3d90697ab
equal deleted inserted replaced
2210:d62eb2a97d30 2211:473f6c2b0fdf
   426 
   426 
   427   $ git bisect log >$LOG
   427   $ git bisect log >$LOG
   428   $ git bisect reset
   428   $ git bisect reset
   429   $ $EDITOR $LOG
   429   $ $EDITOR $LOG
   430   $ git bisect replay $LOG
   430   $ git bisect replay $LOG
       
   431 
       
   432 Import patch
       
   433 ============
       
   434 
       
   435 Check patch summary::
       
   436 
       
   437   git apply --stat my.patch
       
   438 
       
   439 Detect possible errors during patch application::
       
   440 
       
   441   git apply --check my.patch
       
   442 
       
   443 Apply patch to working tree without commit::
       
   444 
       
   445   git apply my.patch
       
   446 
       
   447 Commit patch::
       
   448 
       
   449   git am my.patch
       
   450 
       
   451 Commit patch by signing you as reviewer::
       
   452 
       
   453   git am --signoff my.patch
   431 
   454 
   432 Debug git network operation
   455 Debug git network operation
   433 ===========================
   456 ===========================
   434 
   457 
   435 Git uses libcurl for network operation::
   458 Git uses libcurl for network operation::