author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Mon, 22 Feb 2016 13:12:06 +0200 | |
changeset 1908 | 0260f8ffef35 |
parent 1905 | fba288d59662 |
child 1912 | 8b81a8f0f692 |
permissions | -rw-r--r-- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1029
diff
changeset
|
1 |
.. -*- coding: utf-8; -*- |
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1029
diff
changeset
|
2 |
.. include:: HEADER.rst |
1028 | 3 |
|
4 |
====== |
|
5 |
CVS. |
|
6 |
====== |
|
1029 | 7 |
.. contents:: |
1905
fba288d59662
Include only local subsections into TOC. This prevent duplication of
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1830
diff
changeset
|
8 |
:local: |
1028 | 9 |
|
10 |
CVS via proxy server. |
|
11 |
===================== |
|
12 |
:: |
|
13 |
||
14 |
$ cvs -d:pserver;proxy=$proxyhost;proxyport=$proxyport:$cvsuser@$cvsdomain:/$repo |
|
15 |
||
16 |
Create CVS Repository. |
|
17 |
====================== |
|
18 |
:: |
|
19 |
||
20 |
$ export CVSROOT=/srv/cvsroot |
|
21 |
$ cvs init |
|
22 |
||
23 |
$ groupadd cvs |
|
24 |
$ useradd -m -g cvs -s /bin/sh -c "CVS Repository" cvs |
|
25 |
||
26 |
$ chown -R cvs $CVSROOT |
|
27 |
$ chgrp -R cvs $CVSROOT |
|
28 |
$ chmod -R g+s $CVSROOT |
|
29 |
||
30 |
$ grep cvs /etc/services && echo OK |
|
31 |
cvspserver 2401/tcp # CVS client/server operations |
|
32 |
cvspserver 2401/udp # CVS client/server operations |
|
33 |
$ echo '# CVS server |
|
34 |
cvspserver stream tcp nowait root /usr/bin/cvs cvs --allow-root=/usr/local/src/cvsroot pserver' \ |
|
35 |
>/etc/inetd.conf |
|
36 |
$ killall -HUP inetd # signal inetd daemon to re-read the config file |
|
37 |
||
38 |
$ ls $CVSROOT/CVSROOT |
|
39 |
readers # list of pseudo usernames that can read via cvspserver |
|
40 |
writers # list of pseudo usernames can write via cvspserver |
|
41 |
passwd # encrypted passwd string with (htpasswd from apache) |
|
42 |
||
43 |
CVS workflow. |
|
44 |
============= |
|
45 |
||
46 |
Check out sources:: |
|
47 |
||
48 |
$ cvs co -P $proj |
|
49 |
||
50 |
Status of changes:: |
|
51 |
||
52 |
$ cvs status |
|
53 |
||
54 |
Compare local changes:: |
|
55 |
||
56 |
$ cvs diff -u $path |
|
57 |
||
58 |
Creating patch:: |
|
59 |
||
60 |
$ cvs diff -N -u -r >$patch |
|
61 |
||
62 |
History of changes:: |
|
63 |
||
64 |
$ cvs log $file |
|
65 |
||
66 |
Remove a file:: |
|
67 |
||
68 |
$ rm $file # must first remove it locally |
|
69 |
$ cvs rm $file # schedules it for removal |
|
70 |
||
71 |
Add a file:: |
|
72 |
||
73 |
$ cvs add $file |
|
74 |
||
75 |
Check in local changes:: |
|
76 |
||
77 |
$ cvs ci |
|
78 |
||
79 |
Update local sources:: |
|
80 |
||
81 |
$ cvs update |
|
82 |
||
83 |
Move a file can not be done cleanly at the local level. The best way to do this |
|
84 |
with CVS is to go to the cvsroot repository and move the file or directory |
|
85 |
within the repository there. The cvsroot repository keeps all files in their RCS |
|
86 |
form of filename,v . The next cvs update will manifest the file move. |
|
87 |
||
88 |
Tagging sources:: |
|
89 |
||
90 |
$ cvs tag $name |
|
91 |
$ cvs rtag $name |
|
92 |
||
93 |
Revert file:: |
|
94 |
||
95 |
$ rm $file # remove it from local sources |
|
96 |
$ cvs update $file # get a new copy from the repository |
|
97 |
||
1829
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
98 |
Working with CVS branches. |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
99 |
========================== |
1436
b069e5cd5e90
List of CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
100 |
|
1830 | 101 |
There are no direct command to list symbolic names for branches but this command |
102 |
allow extract such info:: |
|
1436
b069e5cd5e90
List of CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
103 |
|
b069e5cd5e90
List of CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
104 |
$ cd $CVS_PROJ |
b069e5cd5e90
List of CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
105 |
$ cvs rlog -l -h -b $(cat CVS/Repository) |
b069e5cd5e90
List of CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
106 |
|
1830 | 107 |
Switch to branch:: |
1829
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
108 |
|
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
109 |
$ cvs up -r $BRANCH |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
110 |
|
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
111 |
Update to HEAD:: |
1437 | 112 |
|
113 |
$ cvs up -A |
|
114 |
||
1829
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
115 |
Replace head:: |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
116 |
|
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
117 |
$ cvs up -j$HEAD -j $NEWBRANCH |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
118 |
|
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
119 |
Replace branch:: |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
120 |
|
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
121 |
$ cvs up -j$OLD -j $NEW |
f001ff60c027
Working with CVS branches.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1437
diff
changeset
|
122 |