Changes between Version 4 and Version 5 of MergerTips
- Timestamp:
- Jul 25, 2013, 8:59:48 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MergerTips
v4 v5 64 64 == Keeping all upstream branches current locally == 65 65 66 I keep this in a script on my path called 'djangoup' 67 66 68 {{{ 67 69 #!/bin/bash … … 71 73 git co master && git merge --ff-only upstream/master 72 74 }}} 75 76 == Checking test coverage of lines changed/added in a patch == 77 78 This quick hack checks the coverage of the changes introduced by a given patch 79 80 https://github.com/ptone/diff-coverage