Skip to content

Instantly share code, notes, and snippets.

@573
Last active October 7, 2015 12:06
Show Gist options
  • Save 573/a0ace4e5919deeeb1389 to your computer and use it in GitHub Desktop.
Save 573/a0ace4e5919deeeb1389 to your computer and use it in GitHub Desktop.
Q&A: what does `@@ -201,6 +201,102 @@` in my patch file mean?
  • lets start with the 6 as in -201,6 + basically says 6 lines of context were needed to make the patch distinguishable and diminish the risk to apply to wrong file, 3 lines before and also after
  • the 201 as in -201...+201 added to the nr (3) computed in the step above marks the line nr in the modified document which contains line one of the after appliing the patch
  • the 102 as in +201,102 simply counts the lines added to the modified document after appliing the patch
diff --git a/pom.xml b/pom.xml
index b5c8a57..a4fe107 100644
--- a/pom.xml
+++ b/pom.xml
@@ -201,6 +201,102 @@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment