DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Patching Source
Making Patch -- to represent the addition of a new file, diff it against /dev/null.
diff -Naur test.old test.cpp > test.patch
Apply Patch
patch test.cpp test.patch
Undo Patch
patch -R test.cpp test.patch




