File: basic-rc.texi

package info (click to toggle)
arch 1.0pre15-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 20,180 kB
  • ctags: 4,560
  • sloc: ansic: 64,410; sh: 29,168; lisp: 1,896; awk: 1,044; makefile: 484; sed: 26
file content (956 lines) | stat: -rw-r--r-- 21,074 bytes parent folder | download
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
@need 3200

@node Basic Revision Control
@chapter Basic Revision Control

This chapter introduces the fundamental operations for storing
revisions in archives, retrieving them, doing clever things with
patches, and managing project trees for archived projects.

@menu
* The First Revision::
* Successive Revisions::
* Patch Levels and Development Phases::
* Getting a Revision::
* Optimizing Archives for get::
* Finding Out What Changed::
* The whats-missing Command::
* Update::
* Replay::
* The Next Version::
@end menu

@need 3200

@node The First Revision
@section The First Revision

@geindex init-tree



When beginning a new project, the first step is to check in the very
first revision of the tree.


@strong{Prepare the Archive} We've already seen how to prepare the archive by
creating the category, branch, and version for the project (see
@strong{Creating a Development Path} in @ref{Development Paths}).  You have to perform those
steps before checking in the first revision:

@example
@group
        % larch make-category CATEGORY
        % larch make-branch BRANCH
        % larch make-version VERSION
@end group
@group
@end group
@end example

@strong{Prepare the Project Tree} We've also seen how to turn an ordinary
directory into a project tree using the @code{init-tree} command (see
@ref{Initializing a Project Tree}).  And we've seen how to set the
default version of a project tree using @code{set-tree-version} (see
@ref{Labelling Project Trees}).  Both of these steps must be
completed before checking in the first revision:

@example
@group
        % larch init-tree
        % larch set-tree-version VERSION-NAME
@end group
@group
@end group
@end example

In addition, you must create for the project tree a "patch log" --
where log entries for revisions in the development path @code{VERSION-NAME}
will be stored:

@example
@group
        % larch add-log VERSION-NAME
@end group
@group
@end group
@end example

Patch logs are explained in detail in the next chapter.  For now, just
accept the necessity of that command on faith. 


@strong{Prepare a Log Message} In the root of the project tree, the command:

@example
@group
        % larch make-log 
@end group
@group
@end group
@end example

@noindent
creates a template for a log file (look for file whose name begins
with @code{++log}).  The details of what should go in a log message are
project specific.  In general, the format of a log message uses
@code{RFC822} style headers followed by a free-form body.  When @code{arch}
stores a log message, it will add some headers of its own.


@strong{Archive the Tree} Again, in the root of the project tree, use
the @code{import} command to archive the tree:

@example
@group
        % larch import
@end group
@group
@end group
@end example

@code{import} will print the headers of the log message (including headers
added by @code{arch}), store the tree in the archive (as a compressed tar
file), and update the patch log of the working directory to reflect
the commit.


After commiting a revision to, say, @code{hello--devo--1.0}, you can use
the command @code{revisions} to see a list of archived revisions:

@example
@group
        % larch revisions hello--devo--1.0
        base-0
@end group
@group
@end group
@end example

@code{base-0} is the "patch level name" for the first revision.  Patch
levels are described in greater detail below.




@need 3200

@node Successive Revisions
@section Successive Revisions

@geindex revisions



Suppose that you have continued to edit your working directory after
checking in the initial revision.  Successive revisions can be checked
in with the command @code{commit}, issued at the root of the working
directory.  As with @code{import}, you must first use @code{make-log} to
prepare a log message for each commit:

@example
@group
        % larch make-log
@end group
@group
@end group
@end example
@example
@group
        [...edit log message...]
@end group
@group
@end group
@end example
@example
@group
        % larch commit
        [output omitted]
@end group
@group
@end group
@end example

After several commits, you'll have a number of patch levels:

@example
@group
        % larch revisions hello--devo--1.0
        base-0
        patch-1
        patch-2
        patch-3
        ...
@end group
@group
@end group
@end example

As a point of interest, the base revision is stored as a compressed
tar file of the entire tree.  Each @code{patch-N} is stored as a compressed
tar file of just a patch set that describes how to derive that
revision from the previous revision.




@need 3200

@node Patch Levels and Development Phases
@section Patch Levels and Development Phases

Within a version, there is a sequence of revisions, each of which is a
different @geindex patch level
@dfn{patch level}.  Every patch level has a @geindex patch level name
@dfn{patch level name},
derived from the version name by adding a suffix:

@example
@group
        hello--devo--1.0--base-0
        hello--devo--1.0--patch-1
        hello--devo--1.0--patch-2
        hello--devo--1.0--patch-3
        ...
@end group
@group
@end group
@end example

Just as with version names, there is also such a thing as a @geindex fully
qualified patch level name
@dfn{fully
qualified patch level name}:

@example
@group
        joe.hacker@@gnu.org--test-archive/hello--devo--1.0--patch-3
@end group
@group
@end group
@end example

Development within a version may be optionally divided into four
phases: @geindex base revision
@dfn{base revision}, @geindex pre-patches
@dfn{pre-patches}, @geindex version revision
@dfn{version revision}, and
@geindex post-patches
@dfn{post-patches}.  Conceptually, "pre-patches" are revisions made
before the version is "done".  "Post-patches" are revisions made
after the version is done (e.g. "bug fix patches").


At the beginning of a development path is the @geindex base revision
@dfn{base revision}
(called @code{base-0}).  Between the pre-patch and post-patch phases is the
@geindex version revision
@dfn{version revision} (called @code{version-0}).  Post-patches have names like
@code{versionfix-1}, @code{versionfix-2}, etc.


So the total sequence of revisions within a development path has the
form:

@example
@group
        The Initial Revision:
@end group
@group
@end group
@end example
@example
@group
                base-0
@end group
@group
@end group
@end example
@example
@group
        Pre-Patches:
@end group
@group
@end group
@end example
@example
@group
                patch-1
                patch-2
                patch-3
                ...
                patch-N
@end group
@group
@end group
@end example
@example
@group
        The Version Revision:
@end group
@group
@end group
@end example
@example
@group
                version-0
@end group
@group
@end group
@end example
@example
@group
        Post-Patches:
@end group
@group
@end group
@end example
@example
@group
                versionfix-1
                versionfix-2
                versionfix-3
                ...
@end group
@group
@end group
@end example

Typically, the @code{version-0} revision is what would be released under
the version number and the post-patch revisions are fixes made after
the release.


The ordinary @code{commit} command creates pre-patches (@code{patch-N}
revisions).


To create the version revision, use @code{commit --seal}:

@example
@group
        % larch commit --seal
@end group
@group
@end group
@end example

After the version revision exists, ordinary commit will no longer
work.  To create a post-patch revision, use @code{commit --fix}:

@example
@group
        % larch commit --fix
@end group
@group
@end group
@end example

It is perhaps worth mentioning that patch level names can be sorted
easily using:

@example
@group
       sort -t - -k 1,1 -k 2,2n
@end group
@group
@end group
@end example

@noindent
or in reverse:

@example
@group
       sort -t - -k 1,1r -k 2,2rn
@end group
@group
@end group
@end example

If you are familiar with other revision control systems, a four-phased
development process may at first seem somewhat arbitrary and
needlessly complicated.  Two points are worth mentioning:


First, phased development is entirely optional.  Nothing requires you
to ever @code{--seal} a version, and if you never seal a version,
you never need to use @code{--fix}.  Instead, every revision (after
@code{base-0}) will be a @code{patch-N} revision.


Second, phased development is a handy way to prevent accidents when
organizing more complex projects.  Sealing a version is a
way to set a flag that says, in effect, "ordinary development in this
version has stopped -- you might not really want to make a new
revision here."  You can make a new revision if you insist (by
specifying @code{--fix}), but the requirement that you insist helps alert
you to the fact that your new revision might need to be merged with
later versions of the same project; or that that version you are
revising has already been released.  Phased development is a
bookkeeping convenience: for the most part, @code{arch} treats all
revisions equally, regardless of their phase.




@need 3200

@node Getting a Revision
@section Getting a Revision

To retrieve a revision from an archive, use @code{larch get}:

@example
@group
        % larch get REVISION DIR
@end group
@group
@end group
@end example

@noindent
as in:

@example
@group
        % larch get hello--devo--1.0--patch-4 hello
@end group
@group
@end group
@end example

@noindent
to retrieve the revision @code{patch-4} and store it in the new directory
@code{hello}.


An abbreviation can be used to obtain the most recent revision of a
version:

@example
@group
        % larch get hello--devo--1.0 hello
@end group
@group
@end group
@end example

@noindent
or to obtain the most recent revsion of the highest-numbered version:

@example
@group
        % larch get hello--devo hello
@end group
@group
@end group
@end example

A fully-qualified name can be used to obtain a revision from someplace
other than the default archive:

@example
@group
        % larch get joe.hacker@@gnu.org--test-archive/hello--devo
@end group
@group
@end group
@end example



@need 3200

@node Optimizing Archives for get
@section Optimizing Archives for get

The way that @code{get} ordinarilly works is that it searches backwards
from the desired revision to find the nearest full-source base
revision.  It gets the compressed tar file for that base revision and
creates a source tree.  Then, for each intermediate patch level, it
gets a compressed tar file of the patch set, uncompresses and un-tars
the patch-set, and applies the patch-set to the source tree.


If there are many intermediate patch-sets, that process can be slow.  
In such cases, you can ask @code{arch} to cache a full-source copy of an
arbitrary revision, with the command:

@example
@group
        % larch archive-cache-revision [ARCHIVE/]REVISION
@end group
@group
@end group
@end example

That command first builds the requested revision, then it builds a
compressed tar file of the revision, then it stores the tar file back
in the archive.  Subsequent attempts to @code{get} the same revision (or
any later revision) will use the cached tree.


To remove a previously cached tree, use:

@example
@group
        % larch archive-uncache-revision [ARCHIVE/]REVISION
@end group
@group
@end group
@end example

For each user, @code{arch} also maintains a "client side" cache of
revisions that can speed up @code{get} (and other operations).  The details
of client side caching are documented in a later chapter (xref!!!).




@need 3200

@node Finding Out What Changed
@section Finding Out What Changed

@geindex what-changed



Before performing a @code{commit}, you might want to check to see what 
has actually changed -- that is, find out exactly what patch set your
@code{commit} will create.


You can do that with the command @code{what-changed}:

@example
@group
        % larch what-changed
        [...patch set report...]
@end group
@group
@end group
@end example

@code{what-changed} computes a patch set between your modified project tree
and the latest patch level for which your project tree is up-to-date.
In other words, it tells you what changes have been made to your tree
compared to the tree in the archive.


@code{what-changed} leaves behind a directory containing the patch set and
patch report, which you can usefully browse by hand.

@example
@group
    % ls
    ,,what-changed.arch--devo--0.5--patch-14--lord@@regexps.com--arch-1
    [...]
@end group
@group
@end group
@end example

The default output of @code{what-changed} is formatted for use with the
@code{outline} mode of @emph{@strong{GNU Emacs}}.


You can ask @code{what-changed} to also generate an HTML-formatted report
with:

@example
@group
        % larch what-changed --url
        URL of patch report
@end group
@group
@end group
@end example

The HTML report has links to each context diff, added, and removed
file.  The output of the command is a @code{file:} method URL.  For
example, a useful command for @code{netscape} users is:

@example
@group
        % netscape --remote "openURL(`larch what-changed --url`)"
@end group
@group
@end group
@end example



@need 3200

@node The whats-missing Command
@section The whats-missing Command

@geindex whats-missing



Suppose that more than one programmer is checking revisions into a
version, Alice and Bob for example.


Alice and Bob both start with working directories and both make some
changes.  Alice commits several changes.  Now Bob's working directory
has fallen behind archived development path.


The command @code{whats-missing} can be used to tell Bob which patches he
is missing:

@example
@group
        % larch whats-missing --summary
        patch-N
                summary of patch N
        patch-N+1
                summary of patch N+1 
        ...
@end group
@group
@end group
@end example

For each patch that Bob is missing, @code{whats-missing --summary} prints
the name of the patch and the contents of the @code{Summary:} header from
its log message.


The @code{whats-missing} command is explained in greater detail in a later
chapter (see @ref{Patch Logs and ChangeLogs}).




@need 3200

@node Update
@section Update

So Bob is behind by a few patches, but also has his own modifications.


Diagramatically, we have something like:

@example
@group
        Patch Levels    Bob's Working
        in the          Directory
        Archive:
        ------------------------------
@end group
@group
@end group
@end example
@example
@group
        base-0
@end group
@group
@end group
@end example
@example
@group
        patch-1
        patch-2
        patch-3
        patch-4 --------> bob-0 (Bob's initial working directory)
        patch-5             |
        patch-6             |
        patch-7             V
        patch-8           bob-1 (Bob's working dir with changes)
@end group
@group
@end group
@end example

Bob is missing patches five through eight.


The command @code{update} can be used to fix the situation:

@example
@group
        % larch update OLD-DIR NEW-DIR
@end group
@group
@end group
@end example

@noindent
as in:

@example
@group
        % larch update bob-1 bob-2
@end group
@group
@end group
@end example

@code{update} works in several steps.  First, it gets a copy of the latest
revision (@code{patch-8} in this case).  It also gets a copy of the
revision from which @code{OLD-DIR} is dervied (@code{patch-4} in this case).
Then it uses @code{mkpatch} to compute the differences between @code{OLD-DIR} 
and its source revision, and applies those differences (using
@code{dopatch}) to the latest revision.


In the example, update will create the directory @code{bob-2}, with
the source:

@example
@group
        delta(patch-4, bob-1)[patch-8]
@end group
@group
@end group
@end example

(For information about this notation, see @ref{The Theory of Patches and Revisions}.)


Applying that patch might cause conflicts.  In that case, @code{update}
will print a message telling Bob to look for @code{.rej} files.


As a convenience, @code{update} also copies all "precious" non-source
files from @code{OLD-DIR} to @code{NEW-DIR} (see @ref{arch Project Inventories}).


Of course, if Bob only wanted to "partly update", he could do that
with an extra parameter to @code{update}, as in the example:

@example
@group
        # update, but only up to patch level 6:
        # 
@end group
@group
@end group
@end example
@example
@group
        % larch update bob-1 bob-2 hello--devo--1.1--patch-6
@end group
@group
@end group
@end example

Finally, @code{update} can replace @code{OLD-DIR} with the updated directory if
given the @code{--in-place} flag:

@example
@group
        % larch update --in-place OLD-DIR
@end group
@group
@end group
@end example



@need 3200

@node Replay
@section Replay

@code{update} isn't the only way to catch-up with a development path.
Another option is @code{replay}:

@example
@group
        % larch replay old-dir new-dir
@end group
@group
@end group
@end example

Using the same example:

@example
@group
        Patch Levels    Bob's Working
        in the          Directory
        Archive:
        ------------------------------
@end group
@group
@end group
@end example
@example
@group
        base-0
@end group
@group
@end group
@end example
@example
@group
        patch-1
        patch-2
        patch-3
        patch-4 --------> bob-0 (Bob's initial working directory)
        patch-5             |
        patch-6             |
        patch-7             V
        patch-8           bob-1 (Bob's working dir with changes)
@end group
@group
@end group
@end example

@noindent
and the command:

@example
@group
        % larch replay bob-1 bob-2
@end group
@group
@end group
@end example

@code{replay} will first copy @code{bob-1} to create @code{bob-2}.  Then it will
apply each missing patch in succession until @code{bob-2} is up-to-date, or
until a merge conflict occurs.


Thus, if no conflict occurs, @code{replay} computes:

@example
@group
        patch-8 [ patch-7 [ patch-6 [ patch-5 [ bob-1 ]]]]
@end group
@group
@end group
@end example

If a conflict occured in, say, @code{patch-6}, then @code{replay} would compute:

@example
@group
        patch-6 [ patch-5 [ bob-1 ]]
@end group
@group
@end group
@end example

@noindent
and after fixing the conflict, Bob could use a second @code{replay} command
to apply patches seven and eight.


As with @code{update}, @code{replay} also copies all "precious" non-source
files from @code{OLD-DIR} to @code{NEW-DIR} (see @ref{arch Project Inventories}).


Of course, if Bob only wanted to "partly replay", he could do that
with an extra parameter to @code{replay}, as in the example:

@example
@group
        # replay, but only up to patch level 6:
        # 
@end group
@group
@end group
@end example
@example
@group
        % larch replay bob-1 bob-2 hello--devo--1.1--patch-6
@end group
@group
@end group
@end example

You can use @code{replay} to modify an existing directory rather than
creating a new directory:

@example
@group
        % larch replay --in-place DIR [REVISION]
@end group
@group
@end group
@end example

@noindent
but be careful: if @code{DIR} contains precious local changes, and
conflicts occur, or if you simply decide the @code{replay} wasn't a good
idea, you'll have to do some work to revert the @code{replay}.




@need 3200

@node The Next Version
@section The Next Version

In simple situations, a version like @code{hello--devo--1.0} will be
followed by the @geindex next version
@dfn{next version}: @code{hello--devo--1.1} or
@code{hello--devo--2.0}, for example.


Such a version is called a @geindex continuation
@dfn{continuation} of the previous version and
it is created with this sequence of commands (in the root of a working
directory):

@example
@group
        % larch make-version NEXT-VERSION
        % larch add-log NEXT-VERSION
        % larch set-tree-version NEXT-VERSION
        % larch make-log
        [...edit log message...]
        % larch commit --continuation PREVIOUS-VERSION
@end group
@group
@end group
@end example

@noindent
as in:

@example
@group
        % larch make-version hello--devo--1.1
        % larch add-log hello--devo--1.1
        % larch set-tree-version hello--devo--1.1
        % larch make-log
        [...edit log message...]
        % larch commit --continuation hello--devo--1.0
@end group
@group
@end group
@end example

Those commands create the @code{base-0} revision of the new version but
instead of storing complete source for the base revision, they store a
pointer to the older revision which the base revision is equal to.


On the other hand, if you wanted the next version to start completely
from scratch (perhaps because a program is being replaced by an
entirely new implementation), the @code{import} command can create the next
version as documented earlier in this chapter.


Finally, there is another command (besides @code{commit --continuation})
for creating the next version, @code{larch tag}, described in the next
chapter.