Penguin
Annotated edit history of CVSNotes version 8, including all changes. View license author blame.
Rev Author # Line
4 AristotlePagaltzis 1 Notes for [CVS]
2 AlastairPorter 2
4 AristotlePagaltzis 3 !! View an old revision of a file
1 AlastairPorter 4
4 AristotlePagaltzis 5 You can "update" a file to stdout using <tt>-p</tt>
1 AlastairPorter 6
4 AristotlePagaltzis 7 <verbatim>
8 cvs update -r 1.14 -p index.php
9 </verbatim>
1 AlastairPorter 10
4 AristotlePagaltzis 11 !! <tt>1234/path/to/repository: no such repository</tt>
1 AlastairPorter 12
4 AristotlePagaltzis 13 You said something like <tt>cvs -d :pserver:hostname:1234/path/to/repository</tt>, but your client is older than version 1.11.x and doesn't understand <tt>host:port</tt> being part of the pserver path. You need to upgrade.
14
15 !! <tt>cvs commit: sticky tag `1.1' for file `foobar.ext' is not a branch</tt>
1 AlastairPorter 16
17 Take the sticky tag off the file with:
18
4 AristotlePagaltzis 19 <verbatim>
20 cvs update -A foobar.ext
21 </verbatim>
5 MatthiasDallmeier 22
23 !! CVS file system permissions
24
25 * directories: 2770
26 * files: 0440
6 LawrenceDoliveiro 27
28 ----
8 LawrenceDoliveiro 29 CategoryVersionControl