Lab2 now includes example code for diff and diffstat commands to create and work...
authorLaurence Smart <laurence@unmaskingevolution.com>
Wed, 20 Apr 2011 06:33:15 +0000 (16:33 +1000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 20 Apr 2011 11:23:24 +0000 (21:23 +1000)
lab2.php

index 5e14bb085acb33a5073568a299280c1bd86054b6..80b26c92ca1041f8f8437cf0ea6c3c1020d2c306 100644 (file)
--- a/lab2.php
+++ b/lab2.php
@@ -96,6 +96,25 @@ patch. You can either use the 'diff' tool, or you can use the builtin
 patch generation in a source code management tool if you used one to
 download the package. 
 
+
+<p>Here is the code for creating and working with your patch.
+
+<p>Display the difference in code using diff command:
+<pre><b>
+  diff -up program.c program-update.c
+</b></pre>
+
+<p>Creating a patch using diff command:
+<pre><b>
+  diff -up program.c program-update.c > somepatch.patch
+</b></pre>
+
+<p>Producing difference statistics using the diffstat command:
+<pre><b>
+  diffstat somepatch.patch
+</b></pre>
+
 <p>Your patch submission should meet the following criterion:
 
 <ul>