Changes between Version 12 and Version 13 of GitCreateBundle


Ignore:
Timestamp:
Oct 24, 2013, 7:17:56 AM (11 years ago)
Author:
Piero Campalani
Comment:

add verification of merge

Legend:

Unmodified
Added
Removed
Modified
  • GitCreateBundle

    v12 v13  
    264264$ git format-patch HEAD~
    265265MERGE.patch
     266# Save the log for final checks
     267$ git log -1 master > MERGE_FF.log
    266268
    267269# Re-merge
     
    324326}}}
    325327
     328Verify the operation:
     329
     330{{{
     331#!sh
     332$ git show M --stat > MERGE.log
     333$ diff MERGE_FF.log MERGE.log
     3341,2c1
     335< commit fc2972dfe875a7d31ff80c065645dc13085a4468
     336< Merge: c2aeb38 e5758d4
     337---
     338> commit 4ebcf92bdf6e9c7bfa66c9c99ede2657c7b10d84
     3394c3
     340< Date:   Wed Oct 23 17:24:04 2013 +0200
     341---
     342> Date:   Wed Oct 23 15:55:02 2013 +0200
     343}}}
     344
    326345
    327346== Further reading ==