Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm really new to linux patches and diff. I'm trying to edit a patch and there's some errors and I have to fix them.

I've come across: @@ -11,7 +11,6 @@

many times in the patch (diff) file and I think the first set of numbers represent the starting line number and number of lines to be edited, but what does the second set represent?

share|improve this question

2 Answers

up vote 1 down vote accepted

They're the resultant starting line and the number of lines in the resultant chunk.

share|improve this answer
ah understood. thank you! – pauliwago Oct 21 '11 at 5:29

Beware that editing a diff is very fragile. If you change the number of lines anywhere in any chunk, you'll break the diff unless you also update the chunks and line numbers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.