Changes between Version 4 and Version 5 of MergerTips


Ignore:
Timestamp:
Jul 25, 2013, 8:59:48 AM (11 years ago)
Author:
Preston Holmes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MergerTips

    v4 v5  
    6464== Keeping all upstream branches current locally ==
    6565
     66I keep this in a script on my path called 'djangoup'
     67
    6668{{{
    6769#!/bin/bash
     
    7173    git co master && git merge --ff-only upstream/master
    7274}}}
     75
     76== Checking test coverage of lines changed/added in a patch ==
     77
     78This quick hack checks the coverage of the changes introduced by a given patch
     79
     80https://github.com/ptone/diff-coverage
Back to Top