For our project we use cvs and we want share changes using patch created using eclipse with configuration in image:
The patch is like this:
### Eclipse Workspace Patch 1.0
#P project2
Index: testFile2.txt
===================================================================
RCS file: testFile2.txt
diff -N testFile2.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ testFile2.txt 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,5 @@
+
+xxxxxx
#P project1
Index: testFile1.txt
===================================================================
RCS file: testFile1.txt
diff -N testFile1.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ testFile1.txt 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,5 @@
+
+yyyyyy
Is there a command/library allows to apply this patch without eclipse? I try 'patch' command but seems doesn't supports this patch format.