Cleanup
[ikiwiki.git] / docs / howtos / HowToCVS.mdwn
1 Create a ~/.cvsrc file with the following:\r
2     \r
3     cvs -q\r
4     diff -u\r
5     update -Pd\r
6     checkout -P\r
7 \r
8 \r
9 \r
10 Assuming you are syncing your sources with e.g. cvsup to /home/dcvs.\r
11 You can checkout /usr/src like this\r
12     \r
13     cd /usr\r
14     cvs -d /home/dcvs checkout src\r
15 \r
16 \r
17 Later you can update the sources with:\r
18     \r
19     cd /usr/src\r
20     cvs -d /home/dcvs update\r
21 \r
22 \r
23 To produce a diff for patch so that you can send it to the submit@:\r
24     \r
25     cd /usr/src\r
26     cvs diff > /tmp/my-added-stuff.patch\r
27 \r