Difference between revisions of "VTK/Boneyard/Creating a patch"
From KitwarePublic
< VTK
Jump to navigationJump to searchDaviddoria (talk | contribs) (New page: If you do not have cvs write access and you want to make a change to a VTK file, the best way is to create a patch against the existing file. Consider two files, File1 and File2. File2 is...) |
Daviddoria (talk | contribs) m (moved Creating a patch to VTK/Boneyard/Creating a patch) |
(No difference)
|
Latest revision as of 13:46, 12 August 2010
If you do not have cvs write access and you want to make a change to a VTK file, the best way is to create a patch against the existing file.
Consider two files, File1 and File2. File2 is a ``new version of File1. To create the patch:
diff -uN File1 File2 > patch.txt|
If you want to create a patch of several files at the same time:
Consider two folders, Folder1 and Folder2. Folder2 is a ``new version of Folder1. To create the patch, the procedure is the same:
diff -uN Folder1 Folder2 > patch.txt|