1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
|
Sun Mar 16 12:37:12 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (File permissions): CVSUMASK now works for RCS
files; but it is (still) awkward for client/server CVS.
Sat Mar 15 17:41:12 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Magic branch numbers): Add comment about where this
should go.
Thu Mar 13 09:11:36 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Credits): Fix grammatical mistake ("manual about"
-> "manual is about"). Reported by Philippe De Muyter.
Sun Mar 9 09:06:40 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (File permissions): Add comment about val-tags and
CVSUMASK.
Sun Mar 2 12:33:26 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (From scratch): Add comment about creating
directories with add rather than import.
* cvs.texinfo (Creating a repository): Add comment about how this
somewhat duplicates Server requirements.
* cvs.texinfo (Connecting via rsh): Add comment about rsh
vs. remsh. Also wording fix ("incorrect" -> "inapplicable").
* cvs.texinfo (Outside): Add comment about renames and annotate.
* cvs.texinfo (Server requirements): New node.
Thu Feb 27 15:20:49 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Multiple developers): Reword section on "cvs admin
-l". As nearly as I can tell based on when it came up on info-cvs
and other contexts, people who are into reserved checkouts
generally find that cvs admin -l is OK. Add a bunch more notes
(inside @ignore) about reserved checkout implementation ideas.
Sun Feb 23 16:12:03 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Common options): Add various additional comments
about date formats.
* RCSFILES: Remove diff for Id and explain it in words instead.
The previous values for Id had been clobbered by keyword expansion
on the RCSFILES file itself.
Sat Feb 22 14:16:28 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in (DISTFILES): Fix typo (missing backslash).
Fri Feb 21 23:08:38 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* RCSFILES: New file.
* Makefile.in (DISTFILES): Add RCSFILES.
20 Feb 1997 Lenny Foner <foner@media.mit.edu>
* cvs.texinfo (Checklist): Fix typo ("keword" -> "keyword").
Thu Feb 20 21:57:05 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Keeping a checked out copy): Add "web" to index.
Wed Feb 12 18:44:16 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication client, Invoking CVS):
Document "cvs logout" command.
Tue Feb 11 20:42:45 1997 Ian Lance Taylor <ian@cygnus.com>
* cvs.texinfo (commit options): Document that the -f option to
commit disables recursion.
Sun Feb 9 13:58:59 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (diff options): Document all the options we pass
through to diff. Remove paragraph about -D sometimes meaning
--ifdef since that is no longer true.
* cvs.texinfo (Multiple developers): Add lengthy comment about
reserved checkout design issues.
* cvs.texinfo (Wrappers): Add paragraph about timestamps.
* cvs.texinfo (commit options): Don't try to document what CVS 1.3
does with -f and how recent versions differ: 1.3 is pretty old
anyway, we generally only try to document the current version, and
the way it was described here was pretty confusing.
(Environment variables): Likewise for CVSEDITOR.
* cvs.texinfo (import output): Add index entries for symbolic
links. Add brief mention of whether behavior should be
different. Add comments on other symbolic link issues.
Wed Feb 5 13:02:37 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Concurrency): Add comment about commit/commit
atomicity.
Mon Feb 3 10:55:41 1997 joel boutros <nihilis@moral.addiction.com>
* cvs.texinfo (Connecting via rsh): Fix typo (programs -> problems).
Fri Jan 31 12:18:47 1997 Ian Lance Taylor <ian@cygnus.com>
* cvsclient.texi (Connection and Authentication): Correct typo
(``sent'' for ``send''), and rewrite sentence for clarity.
Fri Jan 24 10:31:57 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (File status): Change "Unresolved Conflict" to "File
had conflicts on merge" per change to CVS.
Sun Jan 19 16:21:17 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (admin): Add comments about "group" and "compiled in
value". At least one info-cvs poster was confused by this.
Thu Jan 16 17:54:51 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Wrappers): It is just -t/-f which doesn't work
client/server. -k *does* (well, except for the problem with
import noted in BUGS). -m I don't know and I doubt anyone cares.
Mon Jan 13 15:41:02 1997 Karl Fogel <kfogel@ynu38.ynu.edu.cn>
* cvs.texinfo (Read-only access): rephrase to imply that there may
be other administrative files, besides history and locks, which
read-only users can also affect (in the future, for example, the
`passwd' file).
Wed Jan 8 14:50:47 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in: Remove CVSid; we decided to get rid
of these some time ago.
Wed Jan 8 09:08:36 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Connection and Authentication): Document
restriction that cvs root sent in the cvs protocol and in the
pserver authentication protocol must be identical.
Thu Jan 2 13:30:56 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in, cvs.texinfo: Remove "675" paragraph;
see ../ChangeLog for rationale.
Thu Jan 2 09:34:51 1997 Karl Fogel <kfogel@ynu38.ynu.edu.cn>
* cvs.texinfo (Read-only access): new node.
(Repository): new menu item for above new node.
(Password authentication server): document the user-aliasing
feature. Why was this undocumented before?
Wed Jan 1 18:12:11 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Conflicts example): Use @asis in example to prevent
starting a line with a conflict marker. This means that when
maintaining the file with CVS itself, CVS will not think there is
a conflict merely because of the conflict marker in the example.
IMHO, this is totally bogus and CVS needs a better way of figuring
out whether a conflict is resolved (see comments elsewhere in this
node), but until then.... Credit to Fred Fish for reporting the
problem.
* cvs.texinfo (cvsignore): Add paragraph about how .cvsignore
files in the sources being imported by "cvs import" override
"-I !". Credit goes to Fred Fish for pointing out this problem.
Thu Dec 19 12:36:46 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Credits): Update Roland Pesch email address per his
request.
Tue Dec 17 12:57:56 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (verifymsg): In example, remove text "and reedit if
necessary"; it was copied from editinfo and doesn't apply here.
Fix syntax of if statement; remove unnecessary attempt at loop;
don't use -n with echo. Add @appendixsec at start of node.
Add note about how verifymsg cannot change log message.
(editinfo): In paragraph saying editinfo is obsolete, fix various
typos and formatting glitches. Mention -e as well as EDITOR.
(editinfo): In saying that editinfo doesn't get consulted with -m,
-F or client/server, recommend verifymsg. Remove comment which
says, in effect, "we need a feature like verifymsg".
(editinfo example): Change "verifymsg" back to "editinfo" here;
the example is of editinfo not verifymsg.
Tue Dec 17 12:45:32 1996 Abe Feldman <feldman@cyclic.com>
* cvs.texinfo (verifymsg): New node.
various places: Say that editinfo is obsolete, or refer to
verifymsg instead of editinfo
Wed Dec 11 08:55:26 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Compatibility): Add comment about 1.3 and file death.
* cvs.texinfo (update output, release output): Document "P" as
well as "U".
Tue Dec 10 16:23:40 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Builds): Change "make" to "implement" and "build";
in this context "make" is ambiguous.
(Builds): Add new URL of mk web page.
Mon Dec 9 11:03:37 1996 Jim Blandy <jimb@floss.cyclic.com>
* cvs.texinfo (Password authentication client, Environment
variables): Remove mention of CVS_PASSWORD.
Sun Dec 8 22:38:34 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Repository files): Mention differences between RCS
files in RCS and in CVS.
(Tags): Tag names must start with a letter.
Fri Dec 6 09:08:18 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (syntax): Expand discussion of regular expression
syntax.
Fri Nov 29 09:06:41 1996 fnf@ninemoons.com (Fred Fish)
and Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo, cvsclient.texi: Make sure @ref and friends are
followed by "," or "." as described in the texinfo manual. This
is a dubious practice as texi2html and texinfo.tex don't require
it, and makeinfo could insert them as needed, but since makeinfo
doesn't do that yet, cope.
* cvs.texinfo (From files): Suggest "diff -r" rather than "ls -R"
as the way to see that the sources seem to have been imported
correctly.
(Common options): -k is also available with import.
(admin options): Fix typo ("interrested" -> "interested").
Mon Nov 25 10:03:56 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Common options): Add comments about two digit
years, year 2000, and ambiguous/nonexistent dates.
Sun Nov 24 17:27:24 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (First import): Don't say what the wdiff program we
are using as an example does--that is confusing. Also don't show
untarring it--people might be familiar with cpio, ZIP, VMS BACKUP,
etc., instead of tar.
* cvs.texinfo (Adding files): Update comment about "cvs add -m".
* cvs.texinfo (Common options): Remove -H; -H is not a command
option.
(Global options): Also list --help and --version. Don't say that
-H gives a list of commands; it doesn't any more (directly).
* cvs.texinfo: Add comment pointing to paper size web page.
* cvs.texinfo (Common options): Rewrite section on date formats.
Executive summary is that RFC822 and ISO8601 are now preferred.
Wed Nov 20 08:39:45 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Getting Notified): Add paragraph clarifying that
watches happen per user, not per working directory.
Tue Nov 19 09:39:08 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Tags): Suggest that future special tag names might
start with ".". Fix typo.
* cvs.texinfo (Removing directories): -P is also available with
export.
(Moving directories): Rewrite first paragraph; now says that you
must use -P for the directory to disappear from working
directories. Thanks to Martin Lorentzon
<Martin.Lorentzson@emw.ericsson.se> for reporting this bug.
(various): Where we mention -P, point to Removing directories
node.
Sat Nov 16 18:03:22 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Example): Rewrite to actually be based on a real
live example (and therefore reflect the way the protocol currently
works). Add comment about formatting of the document itself.
Thu Nov 14 10:22:58 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Introduction): Use @ref, not @xref, after "see".
(Goals): Rewrite items about locking, about uploading in big
chunks, and about atomicity to be focused more on the protocol
than the current implementation.
(Notes): Remove this node. The attempt to describe the basic
model has pretty much been replaced by the Introduction.
The material about how to start the client is incomplete and
better left to cvs.texinfo. And the item about the lack of
SERVER_FLOWCONTROL is obsolete now that SERVER_FLOWCONTROL is the
default.
(Protocol Notes): Add comment about multisite features.
(Requirements): Use @code for requests and responses.
* cvs.texinfo (Remote repositories): Add a few sentences defining
"client" and "server"; before we had been using the terms without
defining them.
* cvs.texinfo (What is CVS?): Add paragraph about reporting bugs.
Reword and expand comp.software.config-mgmt description (and add
comments about other newsgroup facts). Point people at GNU list
of FTP sites rather than directly at prep.ai.mit.edu.
Wed Nov 6 09:45:08 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Tracking sources): Add comment regarding added and
removed files.
Tue Nov 5 14:00:31 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Rename node "Invoking CVS" to "CVS commands".
Rewrite the intro and comments to reflect addition of the new
Invoking CVS.
(Invoking CVS): New node, a quick summary of each command.
(annotate): Don't list the options; refer to Invoking CVS and
Common options instead.
Sun Nov 3 21:22:42 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Compatibility): New node, moved from ../README.
* cvs.texinfo (Common options): Add comment about how tar manual
contains documentation for getdate date formats.
Fri Nov 1 14:00:31 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (commit examples): Rewrite "New major release
number" section to tighten up the wording, better motivate the
discussion, and replace the term "rcs revision number" with
"numeric revision".
Fri Oct 25 07:49:21 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (loginfo): Don't say "a la printf"; the syntax is
only vaguely similar to printf.
* cvs.texinfo (loginfo): To get just the repository name, suggest
%{} instead of % "standing alone"; the latter is now an error.
Tue Oct 22 13:08:54 1996 Noel Cragg <noel@gargle.rain.org>
* cvs.texinfo (loginfo): add information on the new loginfo format
string specification.
Mon Oct 21 17:33:44 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Builds): New node.
(What is CVS?): Refer to it.
Sat Oct 19 14:32:21 1996 Jim Meyering <meyering@asic.sc.ti.com>
and Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Choosing a model): Wording/grammar fix.
Sat Oct 19 14:32:21 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Obsolete): New node.
(Requests): Remove Repository and Lost and adjust Directory,
UseUnchanged, and other places accordingly.
(Required): Directory and Unchanged are now required.
* cvs.texinfo (Removing files): Don't talk about modules; they are
not relevant in this context.
(Removing directories): New node.
(Common options): Refer to it instead of duplicating information.
Fri Oct 18 11:05:06 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (First import, import): Add paragraph about the fact
that import doesn't modify the directory which it imports from.
* cvs.texinfo (Creating a repository): Add paragraph about
resource requirements.
* cvs.texinfo (Copying): Replace empty node with a copy of the GPL.
Thu Oct 17 12:10:55 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Adding files): Revise comment to more accurately
reflect the functioning/nonfunctioning status of cvs add -m.
* cvs.texinfo (Reverting local changes): New node, somewhat based
on the version of this node from 30 Sep 96 change.
(admin options): Refer to it.
* cvs.texinfo: Reinstate 30 Sep 96 change from A4 to US letter.
* cvs.texinfo (Concurrency): When telling people how to clean up
locks, tell them to make sure the locks are owned by the person
who has the stale locks.
(update output, release output): Remove text about how CVS doesn't
print "? foo" for directories; CVS has since been changed (see
conflicts-130 in sanity.sh).
Wed Oct 16 15:01:42 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (history options): Mention new option -x E.
Mon Oct 14 15:21:25 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Tags): Add paragraph on choosing a convention for
naming tags.
Thu Oct 10 16:05:26 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (modules): Describe what & does.
Mon Oct 7 17:20:11 1996 Ian Lance Taylor <ian@cygnus.com>
* cvs.texinfo (Removing files): Correct apparent cut and paste
error: refer to the removed file, not the added file.
Tue Oct 1 14:15:33 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Revert all recent changes (the last unscathed one
is the CVSUMASK one from Sunday). For the most part said changes
are for new features which are not appropriate at this stage of
the release process. None of the changes being reverted need to
go into 1.9, that is for sure.
Mon Sep 30 18:17:34 1996 Greg A. Woods <woods@most.weird.com>
* cvs.texinfo (Credits): add comment asking if we should update.
Add more detail about printing Letter on A4.
Add some comments about internal comments.
(From files): describe "cvs import -b 1" for importing existing
projects onto the main branch.
(First import): add a couple of helpful hints about naming vendor
and release tags, etc., and regularize the examples with this.
(Tracking sources): noted some reasons why you might use vendor
branches with "cvs import".
(Update imports): mention using "update" in place of "checkout" if
you have an existing working directory.
(Binary files in imports): add sub-menu separator comment.
(Tracking sources): new menu entry "Reverting to vendor release".
(Reverting to vendor release): new node to describe reverting
local changes and optionally using patch(1) to move local changes
forward.
(Global options): describe -D and -g, as well as DIFFBIN and
GREPBIN.
(export examples): add one.
(import options): describe the effect of '-b 1'.
Mon Sep 30 08:09:53 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Adjust comments concerning A4 vs. US letter,
referring to ../README.
* cvs.texinfo (Common options): Add comment about dates which CVS
uses in output.
Sun Sep 29 11:14:16 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Keyword list): Don't mention Name twice.
* cvs.texinfo (File permissions): Expand CVSUMASK stuff a bit.
(Setting a watch, Environment variables, Global options): Update
index entries for "read-only files, and ...".
* cvsclient.texi (Requests): State that Gzip-stream is preferred
to gzip-file-contents. Cite RFC1952/1951 rather than just "gzip".
Say that RFC1950/1951 compression is also known as "zlib".
Sat Sep 28 09:31:45 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Repository): Move all information about the
internal structure of the repository to User modules node. Rename
it to "Repository storage" ("User modules" wasn't particularly
clear). Mention CVSUMASK. Much clarification and
reorganization.
(Basic concepts): Remove material which duplicates what is now in
Repository. Rewrite paragraph introducing modules.
* cvs.texinfo (Starting a new project): In discussing difficulty
in renaming files, don't refer to "cvs 1.x"--there is no
non-vaporous "cvs 2.x". Reword to reflect that part of the reason
to avoid renames (where possible) is not because of CVS at all, and
to try to give a general impression of how bad CVS issues involved in
renaming are.
Fri Sep 27 04:23:44 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Adding files): Talk about directories, not modules,
since that is what is meant. Suggest using -kb option to add
rather than running cvs admin after the fact and xref to Binary
files not admin examples. Incorporate information which had been
in "add" node (there was a lot of duplication). Don't document
use of "add" on a directory to take the place of "cvs update -d";
the latter is simpler and more logical.
(add, add options, add examples): Removed.
(release output, release options): Update xrefs accordingly.
(Adding files, Removing files): Mention the fact that adds and
removes are branch-specific.
(Merging adds and removals): New node.
* cvs.texinfo (Concurrency): When mentioning RCS locks, use the
term reserved checkouts and xref to the place where we discuss
them in more depth.
Thu Sep 26 08:26:01 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (log): Add comments about timezones.
(log, Common options): Add index entries for timezone and zone, time.
Wed Sep 25 11:05:30 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (log options): Add xref to where we describe the
date formats that -d accepts.
(Common options): Don't refer to date formats accepted by co(1);
CVS's rules have never been the same. Add long whiny comment
about what a mess date formats are.
Tue Sep 24 11:49:02 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (From other version control systems): The RCS file
must not be locked when you copy it to the CVS repository.
* cvs.texinfo (Editing files): Also discuss how to revert in the
non-watch case. Add some index entries.
* cvs.texinfo (update output): Add comment about how we *should*
be handling .# files. Mention fact that it is different under
VMS. Add .# to index.
Fri Sep 20 13:08:33 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Multiple developers): Revise text on reserved
versus unreserved checkouts extensively. Move index entries for
"reserved checkouts" and "RCS-style locking" to here. Add
cross-reference to cvs admin -l. Add new section "Choosing a
model".
(Editing files): Add note about use of the word "checkout".
Tue Sep 17 00:54:57 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Defining the module): Don't suggest "cvs co
modules"; that depends on a "modules" module being defined which
is not the default which is created by "cvs init". Instead
suggest "cvs co CVSROOT/modules" which should always work.
Tue Sep 17 00:43:49 1996 VaX#n8 <vax@linkdead.paranoia.com>
and Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Rename by copying): Suggest "cvs tag -d" on the file
"new", not on everything. Also don't suggest deleting branch tags.
Tue Sep 17 00:34:39 1996 David A. Swierczek <swierczekd@med.ge.com>
* Makefile.in (install-info): Note whether files are in srcdir and
deal with it rather than cd'ing into srcdir.
Mon Sep 16 23:33:36 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Wrappers): Add comment about using wrappers to
compress files in the repository.
* cvs.texinfo (modules): Add comments about how we should be
documenting how -i and friends operate in client/server CVS.
* cvs.texinfo (File permissions): Describe the need for write
permissions for locks and val-tags.
* cvs.texinfo (commitinfo): Add comment about using commitinfo to
enforce who has access.
Wed Jul 24 17:01:41 1996 Larry Jones <larry.jones@sdrc.com>
and Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (checkout): Refer to "update output" node.
(import): Add new import output node.
(release): Correct release output menu entry (used to be
release options instead).
(update output): Say this is output from checkout as well as
update.
Mon Sep 16 16:18:38 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Common options): Clarify that CVS uses MM/DD/YY dates.
* cvs.texinfo (Common options): Add comment about what HEAD means.
Mon Sep 16 10:52:04 1996 Norbert Kiesel <nk@col.sw-ley.de>
* cvs.texinfo (Global options): Document global '-T' option.
Sat Sep 14 10:46:58 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Keeping a checked out copy): New node.
Fri Sep 13 23:55:42 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Magic branch numbers): Delete song and dance about
how cvs log can't cope with magic branches because rlog doesn't
know about them; cvs log no longer calls rlog. Delete item about
how you can't specify a symbolic branch to cvs log; that is fixed.
Wed Sep 11 22:48:21 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication server): Add comments
regarding port numbers and troubleshooting.
Tue Sep 10 10:36:00 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (What is CVS?): Reword text regarding info-cvs,
to avoid overfull hbox.
* cvs.texinfo (Binary files): Add comment about further issues
with recovering from failure to use -kb.
* cvs.texinfo (Conflicts example): Describe the "feature" by which
CVS won't check in files with conflicts.
(File status): Expand and revise to document all the possible
statuses from cvs status. Also document "Working revision" and
"Repository revision". Refer to other sections for other aspects
of cvs status.
(status options): Refer to other sections as appropriate.
(update output): Refer user to Conflicts example node. Add
comment regarding purging of .# files.
Fri Sep 6 11:47:14 1996 Ian Lance Taylor <ian@cygnus.com>
* cvs.texinfo (Kerberos authenticated): Mention need for
--enable-encryption option in order to use encryption.
(Global options): Likewise, in description of -x option.
Thu Sep 5 14:31:42 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Connecting via rsh): Discuss :ext:, :server:, and
CVS_RSH.
(Remote repositories): Mention what default is if no access method
is specified.
(Environment variables): Don't discuss CVS_RSH at length here;
rely on reference to "Connecting via rsh" node.
Mon Aug 26 15:39:18 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Protocol Notes): When talking about having the
client know the original contents of files, suggest cvs edit as a
solution.
Thu Aug 22 10:44:40 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Keyword list): Document Name keyword.
* cvs.texinfo (Tags): Revise comment regarding legal tag names.
Mon Aug 12 14:58:54 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication security): Add comment
about how some of this is not pserver-specific.
Tue Aug 6 16:48:53 1996 Ian Lance Taylor <ian@cygnus.com>
* cvs.texinfo (log, log options): Update for changes to cvs log
now that it no longer invokes rlog.
Thu Jul 25 10:10:16 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Requests): Fix typo (Kerberos-request ->
Kerberos-encrypt).
Wed Jul 24 18:53:13 1996 Ian Lance Taylor <ian@cygnus.com>
* cvs.texinfo (Kerberos authenticated): Change the note that the
Kerberos connection is not encrypted.
(Global options): Add documentation for -x.
* cvsclient.texi (Protocol Notes): Remove enhancement note about
Kerberos encryption.
(Requests): Add documentation for Kerberos-encrypt request.
Thu Jul 18 18:27:40 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Creating a repository): Mention need to be able to
create lock files in the repository.
* cvsclient.texi (Responses): In F response, make at least a
minimal attempt to define "flush".
* cvs.texinfo (Wrappers): Document -k.
(From files, Binary files in imports): Say that imports can deal
with binary files and refer to Wrappers node for details.
(Binary files): Likewise for imports and adds.
Sat Jul 13 18:29:10 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Binary files): Add paragraph concerning the fact
that the keyword expansion mode is not versioned, and why this is
a problem.
Fri Jul 12 18:55:06 1996 Ian Lance Taylor <ian@cygnus.com>
* cvsclient.texi (Requests): Document Gzip-stream.
Thu Jul 11 21:51:45 1996 Ian Lance Taylor <ian@cygnus.com>
* cvsclient.texi (Responses): Document new "F" response.
Wed Jul 10 18:46:39 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (log): Don't document "rlog"; it is deprecated.
Sat Jul 6 22:07:45 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Environment variables): Document more temp
directory nonsense, this time with "patch".
Fri Jul 5 23:27:40 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Responses): Add comment regarding "/." ending.
Fri Sep 13 10:52:09 1996 Greg A. Woods <woods@clapton.seachange.com>
* cvs.texinfo: don't force afourpaper -- Letter prints much better
on A4 than the other way around, believe you me!
(rdiff options): describe -k and new -K.
(RCS keywords): add description of $Name.
(Using keywords): add description of #ident and example of using
$Name.
- also fixed cross references to Substitution modes in various
places.
(import options): mention that -b 1 imports to the trunk.
Tue Jul 2 22:40:39 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Sticky tags): Update to reflect change in
"resurrected" message.
Fri Jun 28 10:48:33 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Connecting via rsh): Add comment about what we
might be saying about troubleshooting.
Sun Jun 23 10:07:45 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication security): Add comment
regarding anoncvs as practised by OpenBSD.
Wed Jun 19 15:41:11 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Administrative files): Add xref to Intro
administrative files.
(Intro administrative files): Add comment suggesting future
reorganizations of this material.
(syntax): Add comment regarding this node.
(Getting Notified): Actually document the notify file. It hadn't
really been documented to speak of.
(editinfo,loginfo,rcsfino,cvsignore): Make the index entries
follow the standard "foo (admin file)" format.
Fri Jun 14 18:14:32 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (editinfo): Discuss the way editinfo falls down in
the face of -m or -F options to commit, or remote CVS.
Thu Jun 13 15:08:27 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Watches): Add comment discussing the
fact that using cvs edit instead of chmod is not enforced.
* cvs.texinfo (Setting up): Add index entry for "init (subcommand)".
(Creating a repository): Move contents of node Setting up here...
(Setting up): ...and remove this node.
(Creating a repository): Don't refer to the INSTALL file (it just
refers back to us!).
* cvsclient.texi (Responses): Document the fact that the server
should send data only when the client is expecting responses.
Wed Jun 12 16:04:48 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Entries Lines): Add comment regarding specifying
the meaning of "any other" data, in the conflict field.
(Example): Make it clear that using a separate connection for each
command is not required by the protocol. Add some comments
regarding ways in which the example is out of date or wrong.
Fri Jun 7 18:02:36 1996 Ian Lance Taylor <ian@cygnus.com>
and Jim Kingdon <kingdon@cyclic.com>
* cvs.texinfo (annotate): Document new -r, -D, and -f options.
Fri Jun 7 16:59:47 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Invoking CVS): Add comment describing why only some
commands are listed here.
(Structure, Environment variables): Don't describe CVS as a
front-end to RCS.
Tue Jun 4 21:19:42 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Responses): Document Created and Update-existing.
Mon Jun 3 17:01:02 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Responses): Clarify "diff -c" versus "diff -u"
format in Patched response. Don't specify how the client must
implement its patch-applying functionality.
Sun May 26 17:12:24 1996 Norbert Kiesel <nk@col.sw-ley.de>
* cvs.texinfo (tag options) Document option "-c".
Thu May 23 21:11:56 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Credits): Rewrite section on FAQ to reflect the
fact that FAQ is no longer maintained.
(What is CVS?): Mention comp.software.config-mgmt as well as
info-cvs. Mention the fact that info-cvs-request can be slow in
responding.
(What is CVS?): Rather than say that cvs is not a configuration
mangement system, say specifically what it lacks (change control,
etc.). I added process control (which was sorely lacking from the
list of configuration management functionality), and deleted some
functions such as tape construction which are not provided by the
well-known configuration management systems.
* cvs.texinfo (checkout options): Add comment regarding
subdirectories (lack of clarity pointed out by ian@cygnus.com).
Add comment about that infernal "short as possible" wording.
* cvs.texinfo (Global options): Fix error ("diff" -> "log")
(reported by ian@cygnus.com).
Remove footnote "Yes, this really should be fixed, and it's being
worked on"--it isn't clear what "this" is, and I doubt anyone is
working on it.
Tue May 21 17:22:18 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Requests): Clarify Directory with "." as local
directory, and that filename for Questionable cannot contain "/".
Mon May 20 13:15:25 1996 Greg A. Woods <woods@most.weird.com>
* cvs.texinfo (rdiff): description from main.c:cmd_usage
(rtag): description from main.c:cmd_usage
(status): description from main.c:cmd_usage
(tag): description from main.c:cmd_usage
[all for the sake of consistency]
Fri May 17 11:42:46 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Add index entries for :local:, etc.
(Password authentication server): Revert erroneous change
regarding the format of CVSROOT/passwd file.
Thu May 16 17:06:46 1996 Noel Cragg <noel@gargle.rain.org>
* cvsclient.texi (Notes): Removed paragraphs about various server
invocations which are now described in full in node "Connection
and Authentication."
(Requests): Include a note that "gzip-file-contents" doesn't
follow the upper/lowercase convention and that unknown reqests
always elicit a response, regardless of capitalization.
* cvs.texinfo (Kerberos authenticated): Removed bogus version
number.
(Repository): explain the ":local:" access method.
Wed May 15 23:43:04 1996 Noel Cragg <noel@gargle.rain.org>
* cvsclient.texi (Goals): mention access methods.
(Requests): add note about convention: requests starting with a
captial letter don't have any expected response. Made sure each
request has a "Response expected" note.
* cvs.texinfo (Remote repositories): add info about access
methods; fix pserver info.
Tue May 14 08:56:41 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Environment variables): Try to document somewhat
more accurately where we put temporary files.
* cvs.texinfo (From files): Say directory tree instead of module
where that is what we mean. Use @var{wdir} and @var{rdir} in the
example instead of using @var{dir} for two different things.
(From files): Say directory tree instead of module
where that is what we mean.
(Binary files): When using cvs admin -kb, one needs an extra
commit step on non-unix systems.
(Binary files in imports): New node.
(Wrappers): Add comment regarding indent example.
(Top): Don't refer to modules when that is not what we mean.
Fri May 10 09:39:49 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Sticky tags): Explain what sticky dates and
non-branch sticky tags are good for.
* cvs.texinfo (Repository): Document that -d overrides CVS/Root.
Wed May 1 15:38:26 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Tags): Document un-revision of all-uppercase tag
names.
Wed Apr 24 08:41:51 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication security): Rewrite sentence
on complex and unknown security bugs to clarify that it is
referring to people who have been give access to cvs, not to holes
in the authentication method (which is relatively simple).
Tue Apr 23 09:31:29 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Wrappers): Talk about what -m does (and does not
do). Other minor edits.
Wed Apr 17 15:27:03 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (rcsinfo): Rewrite paragraph concerning remote CVS.
* cvsclient.texi (Responses): Document Template response.
Sun Apr 14 16:01:39 1996 Karl Fogel <kfogel@floss.red-bean.com>
* .cvsignore: added CVSvn.texi.
Wed Apr 10 16:56:21 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (~/.cvsrc): Mention setting global options with "cvs".
* cvs.texinfo (release): Change "modules" to "directories".
Release does not take module names as arguments.
* cvs.texinfo (Creating a branch): Add comments about how we
should better document tagging the branchpoint.
Tue Apr 9 19:59:45 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Top): Use @value{CVSVN}, not a vague refenece to 1.4.
* cvs.texinfo (From other version control systems): New node.
Mon Apr 8 15:59:37 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Connection and Authentication): Revise kerberos
and pserver sections to reflect the fact that port 2401 is now
officially registered.
Thu Mar 28 09:51:13 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (History browsing): Reinstate this node. Try to get
it into some minimally useful state (it still needs a lot of
work).
(annotate): New node, subnode of History browing.
* cvsclient.texi (Requests): Add annotate request.
Tue Mar 26 08:46:39 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: In various examples, change tag names to avoid tag
names reserved to CVS.
* cvs.texinfo (Tags): Document what is a valid tag name.
* cvs.texinfo (Substitution modes): Try to describe how the
various keyword expansion settings interract.
(Binary files): Suggest cvs update -A, not removing file and then
updating it, to get effect of new keyword expansion options.
* cvs.texinfo (admin options): Mention CVS's use of `dead' state.
Thu Mar 21 08:25:17 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Environment variables): Expand introduction to RCS
environment variables. Expand and correct CVS_SERVER_SLEEP.
* cvs.texinfo (Environment variables): Remove POSIXLY_CORRECT; cvs
requires options to precede arguments regardless of it.
Thu Mar 21 08:18:42 1996 Norbert Kiesel <nk@col.sw-ley.de>
* cvs.texinfo: Remove paragrahps about a forthcoming CVS
newsgroup and about sending patches to think.com.
(Environment): Document some more (all?) used environment
variables.
Wed Mar 20 09:44:21 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Introduction): New node.
* Makefile.in: Add cruft to reflect fact that cvsclient.texi now
uses CVSvn.texi.
Mon Mar 18 14:43:53 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Requests): Add Case request.
Wed Mar 13 16:01:47 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Connection and Authentication): New node.
* cvsclient.texi (Requests): Expand discussion of Root a bit.
* cvs.texinfo (Setting up): Don't refer to INSTALL file; revise to
reflect some information which had been in the INSTALL file.
* cvs.texinfo (history file): Update to reflect cvsinit -> cvs
init. Adjust discussion of whether history file format is
documented.
(Setting up): Update to reflect cvsinit -> cvs init.
* cvsclient.texi (Requests): Document init request.
Thu Feb 29 10:08:31 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (loginfo example): Adjust example to reflect the way
that CVS actually works. Add comments questioning whether that is
the best behavior.
* cvs.texinfo (cvsignore): Document additions to default ignore list.
Mon Feb 26 13:48:01 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Filenames): New node, documents / vs \, etc.
Wed Feb 24 1996 Marcus Daniels <marcus@sayre.sysc.pdx.edu>
* cvs.texinfo (Password authentication server): Mention
support for imaginary usernames.
Thu Feb 15 16:34:56 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Variables): Add new internal variable $USER.
Wed Feb 14 22:52:58 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (export, admin): Document -k option to cvs export.
* cvs.texinfo (admin options): Mention using -l, -u, -L, and -U in
conjunction with rcslock.pl.
Mon Feb 12 16:38:41 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Remove references to mkmodules.
Sun Feb 11 12:31:36 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi: Add Set request.
* cvs.texinfo (Variables): Rewrite to reflect user variables
replacing environment variables; motivate the discussion better.
(Global options): Add -s option.
Sat Feb 10 11:18:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
* cvs.texinfo (Variables): Fix @table commands.
Fri Feb 9 17:31:18 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Variables): New node.
* Makefile.in (CVSvn.texi): New rule.
(OBJDIR_DISTFILES): Add CVSvn.texi.
(cvs.dvi,cvs.info): Add cruft to deal with it being in build dir
or srcdir.
* cvs.texinfo: Include CVSvn.texi and use the version number from
it instead of a hardcoded version number and date.
Thu Feb 1 13:28:03 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Sticky tags): Expand so it really documents the
features it is talking about rather than referring to "Appendix
A". Add example of how to restore the old version of a dead
file. In various other parts of the manual refer to this node, in
some cases deleting duplicative text. In the case of cvs admin
-b, mention vendor branch usage.
(Removing files): Discuss removing files (in user-visible terms,
not in terms of the Attic and such).
(remove): Remove node; merge contents into Removing files.
Tue Jan 30 17:52:06 1996 Jim Blandy <jimb@totoro.cyclic.com>
* cvs.texinfo: Tweak @top node, to make file compatible with both
makeinfo and texinfo-format-buffer. Perhaps we should fix the
formatters to agree on what constitutes valid texinfo.
Mon Jan 29 16:38:33 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Requirements): New node, to talk about required
versus optional parts of the protocol.
Sun Jan 28 09:00:34 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Modes): Add discussion what what the mode really
means (across diverse operating systems).
Tue Jan 23 12:54:57 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Per mail from Per Cederqvist, change author to "Per
Cederqvist et al". Also remove sentence about Signum shipping
hardcopy manuals and add information on Cyclic. Change version
number to 1.6.87.
Fri Jan 12 15:29:39 1996 Vince Demarco <vdemarco@bou.shl.com>
* cvs.texinfo: Fix the documentation for the com/uncom change
to wrap/unwrap. make everything consistant
Wed Jan 10 16:11:54 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Concurrency): Add index entries; minor clarification.
Tue Jan 9 16:03:39 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Getting Notified): Document users file.
* cvs.texinfo (cvsignore): Add *.obj to list of ignored files.
Wed Jan 3 17:01:58 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (import): Adjust list of ignored files to match
recent change to CVS (CVS* -> CVS CVS.adm). Consolidate
discussion of ignored files in one place (with xrefs from others).
* cvsclient.texi: Remove How To node. It was out of date
(again!), and I am getting sick of trying to update it (internals
documentation should be in the comments, where it at least has a
fighting chance of staying up to date).
(Protocol): Say what \n and \t mean in this document.
Tue Jan 2 23:39:32 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Wrappers): Change comb/uncom to wrap/unwrap.
Mon Jan 2 23:00:00 1996 Vince Demarco <vdemarco@bou.shl.com>
* cvs.texinfo: update the Wrappers documentation so it isn't
so NEXTSTEP centric. The wrappers code has alot of other
general uses. The new version of the documentation tryes
to show that to the reader.
Mon Jan 1 13:09:39 1996 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Responses): Clarify that Module-expansion is not
suitable for passing to co.
Sun Dec 31 10:53:47 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Password authentication server): Suggest specifying
-b in inetd.conf.
* cvs.texinfo (Password authentication): Variety of cleanups and
minor fixes, including shorter node names.
Sun Dec 24 02:37:51 1995 Karl Fogel <kfogel@floss.cyclic.com>
* cvs.texinfo (Using the client with password authentication):
tixed fypos.
Sun Dec 24 00:00:16 1995 Karl Fogel <kfogel@floss.cyclic.com>
* cvs.texinfo (Remote repositories): use @code{rsh} most places,
because it is the name of a program, and because I am a pedant.
Refer to new node "Password authenticated".
(Password authenticated): new node.
(Setting up the server for password authentication): new node.
(Using the client with password authentication): new node.
(Security considerations with password authentication): new node.
These are all really long node names, but it seems necessary that
they be descriptive in case they're referenced elsewhere. If you
can think of a way out of this, please change them.
Thu Dec 21 12:09:34 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Requests): Add Questionable. Revise
documentation of export and update to explain role of -I option.
Tue Dec 19 16:44:18 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Update binary files info for -kb.
Mon Dec 11 12:20:55 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Responses): Add Notified and Mode.
(Requests): Add Notify, noop, watch-on, watch-off, watch-add,
watch-remove, watchers, and editors.
* cvs.texinfo (Watches): New node, to describe new developer
communication features.
Thu Nov 23 08:59:09 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (admin options): In saying that cvs admin -o is not
such a good way to undo a change, refer to the section which
describes the preferred way.
Thu Nov 13 16:39:03 1995 Fred Fish <fnf@cygnus.com>
* Makefile.in: Remove extraneous tab from empty line.
Mon Nov 13 15:00:26 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Concurrency): New node, to describe user-visible
behaviors associated with cvs locks.
* cvs.texinfo (Remote repositories): Add more details of how to
set things up (with rsh and kerberos).
Thu Nov 9 11:41:37 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Remove -Q and -q options from command synopses.
Wed Nov 8 09:38:00 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (Notes): Revise paragraph on server memory use
problem.
Tue Nov 7 16:26:39 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Document merging more than once from a branch;
miscellaneous cleanups.
Mon Oct 30 13:12:53 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (modules): Document -e.
Thu Oct 26 11:15:40 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Tags): Update "version" vs. "revision" for CVS 1.5.
(Index,BUGS): Change bug reporting address from Per Cederqvist to
bug-cvs@prep.ai.mit.edu.
Wed Oct 25 15:37:05 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Miscellaneous minor changes (clean up CVS/Root
stuff, don't say release requires a module entry, etc.).
Tue Oct 24 11:01:22 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: More precisely describe scope of document.
* cvsclient.texi: Describe scope of document
Thu Oct 12 11:25:40 1995 Karl Fogel <kfogel@totoro.cyclic.com>
* cvs.texinfo: cover page now refers to CVS 1.6, and "last
updated" date has been upped to today.
Wed Oct 11 22:30:10 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in (info): Look for *.info* either in build dir or in
srcdir.
Mon Oct 2 17:10:49 1995 Norbert Kiesel <nk@col.sw-ley.de>
* cvs.texinfo (admin): Describe usage of CVS_ADMIN_GROUP to
restrict usage of admin.
Fri Oct 6 21:17:50 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (~/.cvsrc): Document change to command name matching.
Thu Oct 5 18:03:41 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in (install-info): Add comment about srcdir.
Wed Sep 13 12:45:53 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Moving files): Rewrite "Outside" node to clarify
that history is still there and describe how to get it. Assorted
cleanups.
Tue Sep 12 19:02:47 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo (Removing files): Remove section on limitations
which are gone now that we have death support.
Wed Aug 30 12:32:29 1995 Karl Fogel <kfogel@floss.cyclic.com>
* cvs.texinfo (Remote Repositories): new node, referred to from
`Basics' and `Repository'.
(Repository): documented new `-d' vs. `$CVSROOT' vs. `CVS/Root'
behavior.
(commitinfo): document client/server-case behavior.
(editinfo): document client/server-case behavior.
(loginfo): document client/server-case behavior.
(rcsinfo): document client/server-case behavior.
Mon Aug 21 00:23:45 1995 Jim Kingdon <kingdon@harvey.cyclic.com>
* cvsclient.texi (How To): The way to force rsh is to set
CVS_CLIENT_PORT to -1, not to some bogus value.
Tue Aug 15 17:12:08 1995 Karl Fogel <kfogel@floss.cyclic.com>
* cvs.texinfo
(Basic concepts): talk about remote repositories.
(Repository): same.
Mon Jul 24 19:09:12 1995 James Kingdon <kingdon@harvey.cyclic.com>
* cvs.texinfo: Remove references to -q and -Q command options.
Fri Jul 21 10:33:07 1995 Vince DeMarco <vdemarco@bou.shl.com>
* cvs.texinfo: Changes for CVSEDITOR and wrappers.
Thu Jul 13 23:04:12 CDT 1995 Jim Meyering (meyering@comco.com)
* Makefile.in (cvs-paper.ps): *Never* redirect output directly to
the target (usu $@) of a rule. Instead, redirect to a temporary
file, and then move that temporary to the target. I chose to
name temporary files $@-t. Remember to be careful that the length
of the temporary file name not exceed the 14-character limit.
Sun Jul 9 19:03:00 1995 Greg A. Woods <woods@most.weird.com>
* doc/cvs.texinfo:
- document '-q' for 'cvs status'
- correction to regexp use in *info files
- correction to use of 'cvsinit' script
(from previous local changes)
Tue Jun 20 18:57:55 1995 James Kingdon <kingdon@harvey.cyclic.com>
* Makefile.in (dist-dir): Depend on $(OBJDIR_DISTFILES).
Fri Jun 16 21:56:16 1995 Karl Fogel <kfogel@cyclic.com>
and Jim Meyering <meyering@comco.com>
* update.c (update_file_proc): If noexec, just write 'C', don't merge.
Fri Jun 16 07:56:04 1995 Jim Kingdon (kingdon@cyclic.com)
* cvs-paper.ps: Added.
Sat May 27 08:46:00 1995 Jim Meyering (meyering@comco.com)
* Makefile.in (Makefile): Regenerate only Makefile in current
directory when Makefile.in is out of date. Depend on ../config.status.
Sat May 27 08:08:18 1995 Jim Meyering (meyering@comco.com)
* doc/Makefile.in (realclean): Remove more postscript and info files.
Fri Apr 28 22:44:06 1995 Jim Blandy <jimb@totoro.bio.indiana.edu>
* Makefile.in (DISTFILES): Updated.
(doc): Depend on cvsclient.ps too.
(cvs.aux, cvsclient.aux): Add target.
(cvsclient.dvi): Don't nuke the aux file. They're small and
helpful.
(cvsclient.ps): New target.
(dist-dir): Renamed from dist; changed to work with DISTDIR
variable from parent.
Sun Apr 23 22:13:18 1995 Noel Cragg <noel@vo.com>
* Makefile: Added more files to the `clean' target.
* .cvsignore: Added the same files.
Mon Nov 28 10:22:46 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Notes): Remove item about commit options; now
fixed. Rewrite paragraph about server memory usage.
* cvsclient.texi (Responses): Add Set-checkin-prog and
Set-update-prog.
(Requests): Add Checkin-prog and Update-prog.
* cvsclient.texi (TODO): Remove last item (it is fixed) and node.
Fri Nov 18 16:51:36 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Requests): Add Max-dotdot.
Thu Nov 3 07:04:24 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Add Directory request.
(TODO): Remove item about renaming directories.
(Protocol): Change @subheading to @node/@section.
Fri Oct 28 07:51:13 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Add expand-module request and
Module-expansion response.
(Protocol Notes, TODO): Remove items about cvs co funkiness.
Wed Oct 12 19:49:36 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Add Copy-file response.
* cvsclient.texi (How To): Correct item about where declaration
of cvs commands go.
* cvsclient.texi (Protocol): Add new commands. Merge description
of how commands work which was duplicated among the various
commands. Formatting cleanups.
(TODO): Remove item about bad error message on checking in a
nonexistent file; this works now (presumably fixed by the
Unchanged stuff).
(Notes): Remove thing about trying unsupported commands via NFS,
rdist, etc. Also remove item about some commands not being
supported. There are no unsupported commands anymore.
Tue Sep 13 13:28:52 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Document New-entry response.
Mon Sep 12 06:35:15 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Clarify that checksum is of patched
file, not patch itself. Fix typo (valid-requests -> Valid-requests).
* cvsclient.texi (Protocol): Document Sticky request and
Set-sticky and Clear-sticky responses.
(Notes): Remove sticky tags from todo list.
Thu Sep 8 14:23:58 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Document Static-directory requests
and Set-static-directory and Clear-static-directory responses.
(Notes): Remove Entries.Static support from todo list.
* cvsclient.texi (Protocol): Document Unchanged and UseUnchanged
requests. Update documentation of Entry and Lost accordingly.
Mon Aug 22 14:08:21 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Goals): Remove mention of rsh.
(Protocol Notes, TODO): Remove compression item.
(Protocol): Document "status" request.
(TODO): Remove suggestion to add "cvs status".
Tue Jul 19 10:02:53 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* Makefile.in (install-info): Do not depend upon installdirs.
Fri Jul 15 12:56:53 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* Makefile.in (all): Do not depend upon info.
(install): Do not depend upon install-info.
Thu Jul 7 20:43:12 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* cvsclient.texi (Protocol): Add Checksum response.
Thu Jun 30 15:16:50 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Add Global_option request.
Wed Jun 29 14:09:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* cvsclient.texi: Describe sending patches, including the dummy
update-patches request and the Patched response. Mention Kerberos
authentication using ``cvs kserver''. Some other minor changes.
Tue Jun 28 15:21:06 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol Notes): Remove note about sending diffs
in Updated; Ian did it. Remove note about adding encryption to rsh.
Sat May 7 10:44:30 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cvsclient.texi (Protocol): Document Modified without Entry. Add
`add' and `remove' and `Remove-entry'. Formatting cleanups.
Tue Apr 19 01:29:04 1994 John Gilmore (gnu@cygnus.com)
* cvsclient.texi: New node How To; cleanups throughout.
* Makefile.in: Add dependencies on cvsclient.texi.
|