My favorites | Sign in
Logo
          
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
<chapter id="svn-ch-2">
<title>Basic Concepts</title>

<simplesect>
<para>This chapter is a short, casual introduction to Subversion.
If you're new to version control, this chapter is definitely for
you. We begin with a discussion of general version control
concepts, work our way into the specific ideas behind
Subversion, and show some simple examples of Subversion in
use.</para>

<para>Even though the examples in this chapter show people sharing
collections of program source code, keep in mind that Subversion
can manage any sort of file collection&mdash;it's not limited to
helping computer programmers.</para>
</simplesect>


<sect1 id="svn-ch-2-sect-1" >
<title>The Repository</title>

<para>Subversion is a centralized system for sharing information.
At its core is a repository, which is a central store of data.
The repository stores information in the form of a
<firstterm>filesystem tree</firstterm>&mdash;a typical hierarchy
of files and directories. Any number of
<firstterm>clients</firstterm> connect to the repository, and
then read or write to these files. By writing data, a client
makes the information available to others; by reading data, the
client receives information from others. <xref
linkend="svn-ch-2-dia-1"/> illustrates this.</para>

<figure id="svn-ch-2-dia-1">
<title>A typical client/server system</title>
<graphic fileref="images/ch02dia1.png"/>
</figure>

<para>So why is this interesting? So far, this sounds like the
definition of a typical file server. And indeed, the repository
<emphasis>is</emphasis> a kind of file server, but it's not your
usual breed. What makes the Subversion repository special is
that <emphasis>it remembers every change</emphasis> ever written
to it: every change to every file, and even changes to the
directory tree itself, such as the addition, deletion, and
rearrangement of files and directories.</para>

<para>When a client reads data from the repository, it normally
sees only the latest version of the filesystem tree. But the
client also has the ability to view
<emphasis>previous</emphasis> states of the filesystem. For
example, a client can ask historical questions like, <quote>What
did this directory contain last Wednesday?</quote> or <quote>Who
was the last person to change this file, and what changes did
they make?</quote> These are the sorts of questions that are at
the heart of any <firstterm>version control system</firstterm>:
systems that are designed to record and track changes to data
over time.
</para>
</sect1>

<sect1 id="svn-ch-2-sect-2">
<title>Versioning Models</title>

<para>The core mission of a version control system is to enable
collaborative editing and sharing of data. But different
systems use different strategies to achieve this.</para>

<sect2 id="svn-ch-2-sect-2.1">
<title>The Problem of File-Sharing</title>

<para>All version control systems have to solve the same
fundamental problem: how will the system allow users to share
information, but prevent them from accidentally stepping on
each other's feet? It's all too easy for users to
accidentally overwrite each other's changes in the
repository.</para>

<para>Consider the scenario shown in <xref
linkend="svn-ch-2-dia-2"/>. Suppose we have two co-workers,
Harry and Sally. They each decide to edit the same repository
file at the same time. If Harry saves his changes to the
repository first, then it's possible that (a few moments
later) Sally could accidentally overwrite them with her own
new version of the file. While Harry's version of the file
won't be lost forever (because the system remembers every
change), any changes Harry made <emphasis>won't</emphasis> be
present in Sally's newer version of the file, because she
never saw Harry's changes to begin with. Harry's work is
still effectively lost&mdash;or at least missing from the
latest version of the file&mdash;and probably by accident.
This is definitely a situation we want to avoid!</para>

<figure id="svn-ch-2-dia-2">
<title>The problem to avoid</title>
<graphic fileref="images/ch02dia2.png"/>
</figure>

</sect2>

<sect2 id="svn-ch-2-sect-2.2">
<title>The Lock-Modify-Unlock Solution</title>

<para>Many version control systems use a
<firstterm>lock-modify-unlock</firstterm> model to address
this problem. In such a system, the repository allows only
one person to change a file at a time. First Harry must
<quote>lock</quote> the file before he can begin making
changes to it. Locking a file is a lot like borrowing a book
from the library; if Harry has locked a file, then Sally
cannot make any changes to it. If she tries to lock the file,
the repository will deny the request. All she can do is read
the file, and wait for Harry to finish his changes and release
his lock. After Harry unlocks the file, his turn is over, and
now Sally can take her turn by locking and editing. <xref
linkend="svn-ch-2-dia-3"/> demonstrates this simple
solution.</para>

<figure id="svn-ch-2-dia-3">
<title>The lock-modify-unlock solution</title>
<graphic fileref="images/ch02dia3.png"/>
</figure>

<para>The problem with the lock-modify-unlock model is that it's
a bit restrictive, and often becomes a roadblock for
users:</para>

<itemizedlist>
<listitem><para>
<emphasis>Locking may cause administrative problems.</emphasis>

Sometimes Harry will lock a file and then forget about it.
Meanwhile, because Sally is still waiting to edit the file,
her hands are tied. And then Harry goes on vacation. Now
Sally has to get an administrator to release Harry's lock.
The situation ends up causing a lot of unnecessary delay
and wasted time.</para></listitem>

<listitem><para>
<emphasis>Locking may cause unnecessary serialization.</emphasis>

What if Harry is editing the beginning of a text file,
and Sally simply wants to edit the end of the same file?
These changes don't overlap at all. They could easily
edit the file simultaneously, and no great harm would
come, assuming the changes were properly merged together.
There's no need for them to take turns in this
situation.</para></listitem>

<listitem><para>
<emphasis>Locking may create a false sense of security.</emphasis>

Pretend that Harry locks and edits file A, while
Sally simultaneously locks and edits file B. But suppose
that A and B depend on one another, and the changes made
to each are semantically incompatible. Suddenly A and B
don't work together anymore. The locking system was
powerless to prevent the problem&mdash;yet it somehow
provided a false sense of security. It's easy for Harry and
Sally to imagine that by locking files, each is beginning a
safe, insulated task, and thus inhibits them from
discussing their incompatible changes early
on.</para></listitem>
</itemizedlist>

</sect2>

<sect2 id="svn-ch-2-sect-2.3">
<title>The Copy-Modify-Merge Solution</title>

<para>Subversion, CVS, and other version control systems use a
<firstterm>copy-modify-merge</firstterm> model as an
alternative to locking. In this model, each user's client
contacts the project repository and creates a personal
<firstterm>working copy</firstterm>&mdash;a local reflection
of the repository's files and directories. Users then work in
parallel, modifying their private copies. Finally, the
private copies are merged together into a new, final version.
The version control system often assists with the merging, but
ultimately a human being is responsible for making it happen
correctly.</para>

<para>Here's an example. Say that Harry and Sally each create
working copies of the same project, copied from the
repository. They work concurrently, and make changes to the
same file A within their copies. Sally saves her changes to
the repository first. When Harry attempts to save his changes
later, the repository informs him that his file A is
<firstterm>out-of-date</firstterm>. In other words, that file
A in the repository has somehow changed since he last copied
it. So Harry asks his client to <firstterm>merge</firstterm>
any new changes from the repository into his working copy of
file A. Chances are that Sally's changes don't overlap with
his own; so once he has both sets of changes integrated, he
saves his working copy back to the repository. <xref
linkend="svn-ch-2-dia-4"/> and <xref linkend="svn-ch-2-dia-5"/>
show this process.</para>

<figure id="svn-ch-2-dia-4">
<title>The copy-modify-merge solution</title>
<graphic fileref="images/ch02dia4.png"/>
</figure>

<figure id="svn-ch-2-dia-5">
<title>The copy-modify-merge solution (continued)</title>
<graphic fileref="images/ch02dia5.png"/>
</figure>

<para>But what if Sally's changes <emphasis>do</emphasis> overlap
with Harry's changes? What then? This situation is called a
<firstterm>conflict</firstterm>, and it's usually not much of
a problem. When Harry asks his client to merge the latest
repository changes into his working copy, his copy of file A
is somehow flagged as being in a state of conflict: he'll be
able to see both sets of conflicting changes, and manually
choose between them. Note that software can't automatically
resolve conflicts; only humans are capable of understanding
and making the necessary intelligent choices. Once Harry has
manually resolved the overlapping changes&mdash;perhaps after
a discussion with Sally&mdash;he can safely save the
merged file back to the repository.</para>

<para>The copy-modify-merge model may sound a bit chaotic, but
in practice, it runs extremely smoothly. Users can work in
parallel, never waiting for one another. When they work on
the same files, it turns out that most of their concurrent
changes don't overlap at all; conflicts are infrequent. And
the amount of time it takes to resolve conflicts is far less
than the time lost by a locking system.</para>

<para>In the end, it all comes down to one critical factor: user
communication. When users communicate poorly, both syntactic
and semantic conflicts increase. No system can force users to
communicate perfectly, and no system can detect semantic
conflicts. So there's no point in being lulled into a false
promise that a locking system will somehow prevent conflicts;
in practice, locking seems to inhibit productivity more than
anything else.</para>

</sect2>

</sect1>

<!-- How svn implements the philosophy -->
<sect1 id="svn-ch-2-sect-3">
<title>Subversion in Action</title>

<para>It's time to move from the abstract to the concrete. In
this section, we'll show real examples of Subversion being
used.</para>

<sect2 id="svn-ch-2-sect-3.1">
<title>Working Copies</title>

<para>You've already read about working copies; now we'll
demonstrate how the Subversion client creates and uses
them.</para>

<para>A Subversion working copy is an ordinary directory tree on
your local system, containing a collection of files. You can
edit these files however you wish, and if they're source code
files, you can compile your program from them in the usual
way. Your working copy is your own private work area:
Subversion will never incorporate other people's changes, nor
make your own changes available to others, until you
explicitly tell it to do so.</para>

<para>After you've made some changes to the files in your
working copy and verified that they work properly, Subversion
provides you with commands to <quote>publish</quote> your
changes to the other people working with you on your project
(by writing to the repository). If other people publish their
own changes, Subversion provides you with commands to merge
those changes into your working directory (by reading from the
repository).</para>

<para>A working copy also contains some extra files, created and
maintained by Subversion, to help it carry out these commands.
In particular, each directory in your working copy contains a
subdirectory named <filename>.svn</filename>, also known as
the working copy <firstterm>administrative
directory</firstterm>. The files in each administrative
directory help Subversion recognize which files contain
unpublished changes, and which files are out-of-date with
respect to others' work.</para>

<para>A typical Subversion repository often holds the files (or
source code) for several projects; usually, each project is a
subdirectory in the repository's filesystem tree. In this
arrangement, a user's working copy will usually correspond to
a particular subtree of the repository.</para>

<para>For example, suppose you have a repository that contains
two software projects, <literal>paint</literal> and
<literal>calc</literal>. Each project lives in its own
top-level subdirectory, as shown in <xref
linkend="svn-ch-2-dia-6"/>.</para>

<figure id="svn-ch-2-dia-6">
<title>The repository's filesystem</title>
<graphic fileref="images/ch02dia6.png"/>
</figure>

<para>To get a working copy, you must <firstterm>check
out</firstterm> some subtree of the repository. (The term
<quote>check out</quote> may sound like it has something to do
with locking or reserving resources, but it doesn't; it simply
creates a private copy of the project for you.) For example,
if you check out <filename>/calc</filename>, you will get a
working copy like this: </para>

<screen>
$ svn checkout http://svn.example.com/repos/calc
A calc
A calc/Makefile
A calc/integer.c
A calc/button.c

$ ls -A calc
Makefile integer.c button.c .svn/
</screen>

<para>The list of letter A's indicates that Subversion is adding
a number of items to your working copy. You now have a
personal copy of the repository's <filename>/calc</filename>
directory, with one additional
entry&mdash;<filename>.svn</filename>&mdash;which holds the
extra information needed by Subversion, as mentioned
earlier.</para>

<sidebar id="svn-ch-2-sidebar-1">
<title>Repository URLs</title>

<para>Subversion repositories can be accessed through many
different methods&mdash;on local disk, or through various
network protocols. A repository location, however, is
always a URL. Table 2-1 describes how different URL
schemas map to the available access methods.</para>

<table id="svn-ch-2-table-1">
<title>Repository Access URLs</title>
<tgroup cols="2">
<thead>
<row>
<entry>Schema</entry>
<entry>Access Method</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>file:///</literal></entry>
<entry>direct repository access (on local disk)</entry>
</row>
<row>
<entry><literal>http://</literal></entry>
<entry>access via WebDAV protocol to Subversion-aware
Apache server</entry>
</row>
<row>
<entry><literal>https://</literal></entry>
<entry>same as <literal>http://</literal>, but with
SSL encryption.</entry>
</row>
<row>
<entry><literal>svn://</literal></entry>
<entry>access via custom protocol to an
<literal>svnserve</literal> server</entry>
</row>
<row>
<entry><literal>svn+ssh://</literal></entry>
<entry>same as <literal>svn://</literal>, but through
an SSH tunnel.</entry>
</row>
</tbody>
</tgroup>
</table>

<para>For the most part, Subversion's URLs use the standard
syntax, allowing for server names and port numbers to be
specified as part of the URL. Remember that the
<literal>file:</literal> access method is valid only for
locations on the same server as the client&mdash;in fact, in
accordance with convention, the server name portion of the
URL is required to be either absent or
<literal>localhost</literal>:</para>

<screen>
$ svn checkout file:///path/to/repos
&hellip;
$ svn checkout file://localhost/path/to/repos
&hellip;
</screen>

<para>Also, users of the <literal>file:</literal> scheme on
Windows platforms will need to use an unofficially
<quote>standard</quote> syntax for accessing repositories
that are on the same machine, but on a different drive than
the client's current working drive. Either of the two
following URL path syntaxes will work where
<literal>X</literal> is the drive on which the repository
resides:</para>

<screen>
C:\> svn checkout file:///X:/path/to/repos
&hellip;
C:\> svn checkout "file:///X|/path/to/repos"
&hellip;
</screen>

<para>In the second syntax, you need to quote the URL so that
the vertical bar character is not interpreted as a pipe.</para>

<para>Note that a URL uses ordinary slashes even though the native
(non-URL) form of a path on Windows uses backslashes.</para>

</sidebar>

<para>Suppose you make changes to <filename>button.c</filename>.
Since the <filename>.svn</filename> directory remembers the
file's modification date and original contents, Subversion can
tell that you've changed the file. However, Subversion does
not make your changes public until you explicitly tell it to.
The act of publishing your changes is more commonly known as
<firstterm>committing</firstterm> (or <firstterm>checking
in</firstterm>) changes to the repository.</para>

<para>To publish your changes to others, you can use
Subversion's <command>commit</command> command:</para>

<screen>
$ svn commit button.c
Sending button.c
Transmitting file data .
Committed revision 57.
</screen>

<para>Now your changes to <filename>button.c</filename> have
been committed to the repository; if another user checks out a
working copy of <filename>/calc</filename>, they will see
your changes in the latest version of the file.</para>

<para>Suppose you have a collaborator, Sally, who checked out a
working copy of <filename>/calc</filename> at the same time
you did. When you commit your change to
<filename>button.c</filename>, Sally's working copy is left
unchanged; Subversion only modifies working copies at the
user's request.</para>

<para>To bring her project up to date, Sally can ask
Subversion to <firstterm>update</firstterm> her working copy,
by using the Subversion <command>update</command> command.
This will incorporate your changes into her working copy, as
well as any others that have been committed since she checked
it out.</para>

<screen>
$ pwd
/home/sally/calc

$ ls -A
.svn/ Makefile integer.c button.c

$ svn update
U button.c
</screen>

<para>The output from the <command>svn update</command> command
indicates that Subversion updated the contents of
<filename>button.c</filename>. Note that Sally didn't need to
specify which files to update; Subversion uses the information
in the <filename>.svn</filename> directory, and further
information in the repository, to decide which files need to
be brought up to date.</para>

</sect2>


<sect2 id="svn-ch-2-sect-3.2">
<title>Revisions</title>

<para>An <command>svn commit</command> operation can publish
changes to any number of files and directories as a single
atomic transaction. In your working copy, you can change
files' contents, create, delete, rename and copy files and
directories, and then commit the complete set of changes as a
unit.</para>

<para>In the repository, each commit is treated as an atomic
transaction: either all the commit's changes take place, or
none of them take place. Subversion tries to retain this
atomicity in the face of program crashes, system crashes,
network problems, and other users' actions.</para>

<para>Each time the repository accepts a commit, this creates a
new state of the filesystem tree, called a
<firstterm>revision</firstterm>. Each revision is assigned a
unique natural number, one greater than the number of the
previous revision. The initial revision of a freshly created
repository is numbered zero, and consists of nothing but an
empty root directory.</para>

<para><xref linkend="svn-ch-2-dia-7"/> illustrates a nice way to
visualize the repository. Imagine an array of revision
numbers, starting at 0, stretching from left to right. Each
revision number has a filesystem tree hanging below it, and
each tree is a <quote>snapshot</quote> of the way the
repository looked after each commit. </para>

<figure id="svn-ch-2-dia-7">
<title>The repository</title>
<graphic fileref="images/ch02dia7.png"/>
</figure>

<sidebar>
<title>Global Revision Numbers</title>

<para>Unlike those of many other version control systems,
Subversion's revision numbers apply to <emphasis>entire
trees</emphasis>, not individual files. Each revision
number selects an entire tree, a particular state of the
repository after some committed change. Another way to
think about it is that revision N represents the state of
the repository filesystem after the Nth commit. When a
Subversion user talks about <quote>revision 5 of
<filename>foo.c</filename></quote>, they really mean
<quote><filename>foo.c</filename> as it appears in revision 5.</quote>
Notice that in general, revisions N and M of a file do
<emphasis>not</emphasis> necessarily differ! Because CVS
uses per-file revisions numbers, CVS users might want to see
<xref linkend="svn-ap-a"/> for more details.</para>
</sidebar>

<para>It's important to note that working copies do not always
correspond to any single revision in the repository; they may
contain files from several different revisions. For example,
suppose you check out a working copy from a repository whose
most recent revision is 4:</para>

<screen>
calc/Makefile:4
integer.c:4
button.c:4
</screen>

<para>At the moment, this working directory corresponds exactly
to revision 4 in the repository. However, suppose you make a
change to <filename>button.c</filename>, and commit that
change. Assuming no other commits have taken place, your
commit will create revision 5 of the repository, and your
working copy will now look like this:</para>

<screen>
calc/Makefile:4
integer.c:4
button.c:5
</screen>

<para>Suppose that, at this point, Sally commits a change to
<filename>integer.c</filename>, creating revision 6. If you
use <command>svn update</command> to bring your working copy
up to date, then it will look like this:</para>

<screen>
calc/Makefile:6
integer.c:6
button.c:6
</screen>

<para>Sally's changes to <filename>integer.c</filename> will
appear in your working copy, and your change will still be
present in <filename>button.c</filename>. In this example,
the text of <filename>Makefile</filename> is identical in
revisions 4, 5, and 6, but Subversion will mark your working
copy of <filename>Makefile</filename> with revision 6 to
indicate that it is still current. So, after you do a clean
update at the top of your working copy, it will generally
correspond to exactly one revision in the repository.</para>

</sect2>


<sect2 id="svn-ch-2-sect-3.3">
<title>How Working Copies Track the Repository</title>

<para>For each file in a working directory, Subversion records
two essential pieces of information in the
<filename>.svn/</filename> administrative area:</para>


<itemizedlist>
<listitem><para>what revision your working file is based on
(this is called the file's <firstterm>working
revision</firstterm>), and</para></listitem>

<listitem><para>a timestamp recording when the local copy was
last updated by the repository.</para></listitem>
</itemizedlist>

<para>Given this information, by talking to the repository,
Subversion can tell which of the following four states a
working file is in:</para>

<variablelist>
<varlistentry>
<term>Unchanged, and current</term>

<listitem><para>The file is unchanged in the working
directory, and no changes to that file have been committed
to the repository since its working revision. A
<command>svn commit</command> of the file will do nothing,
and an <command>svn update</command> of the file will do
nothing. </para></listitem>
</varlistentry>

<varlistentry>
<term>Locally changed, and current</term>

<listitem><para>The file has been changed in the working
directory, and no changes to that file have been committed
to the repository since its base revision. There are local
changes that have not been committed to the repository, thus
an <command>svn commit</command> of the file will succeed in
publishing your changes, and an <command>svn update</command>
of the file will do nothing.</para></listitem>
</varlistentry>

<varlistentry>
<term>Unchanged, and out-of-date</term>

<listitem><para>The file has not been changed in the working
directory, but it has been changed in the repository. The
file should eventually be updated, to make it current with
the public revision. An <command>svn commit</command> of the
file will do nothing, and an <command>svn update</command> of
the file will fold the latest changes into your working
copy.</para></listitem>
</varlistentry>

<varlistentry>
<term>Locally changed, and out-of-date</term>

<listitem><para>The file has been changed both in the
working directory, and in the repository. An <command>svn
commit</command> of the file will fail with an
<quote>out-of-date</quote> error. The file should be
updated first; an <command>svn update</command> command will
attempt to merge the public changes with the local changes.
If Subversion can't complete the merge in a plausible way
automatically, it leaves it to the user to resolve the
conflict.</para></listitem>
</varlistentry>
</variablelist>


<para>This may sound like a lot to keep track of, but the
<command>svn status</command> command will show you the state
of any item in your working copy. For more information on
that command, see <xref linkend="svn-ch-3-sect-4.3.1" />.</para>

</sect2>

<sect2 id="svn-ch-2-sect-3.4">
<title>The Limitations of Mixed Revisions</title>

<para>As a general principle, Subversion tries to be as flexible
as possible. One special kind of flexibility is the ability
to have a working copy containing mixed revision
numbers.</para>

<para>At first, it may not be entirely clear why this sort of
flexibility is considered a feature, and not a liability.
After completing a commit to the repository, the freshly
committed files and directories are at a more recent working
revision than the rest of the working copy. It looks like a
bit of a mess. As demonstrated earlier, the working copy can
always be brought to a single working revision by running
<command>svn update</command>. Why would someone
<emphasis>deliberately</emphasis> want a mixture of working
revisions?</para>

<para>Assuming your project is sufficiently complex, you'll
discover that it's sometimes nice to forcibly
<quote>backdate</quote> portions of your working copy to an
earlier revision; you'll learn how to do that in Chapter 3.
Perhaps you'd like to test an earlier version of a sub-module,
contained in a subdirectory, or perhaps you'd like to examine
a number of previous versions of a file in the context of the
latest tree.</para>

<para>However you make use of mixed-revisions in your working
copy, there are limitations to this flexibility.</para>

<para>First, you cannot commit the deletion of a file or
directory which isn't fully up-to-date. If a newer version of
the item exists in the repository, your attempt to delete will
be rejected, to prevent you from accidentally
destroying changes you've not yet seen.</para>

<para>Second, you cannot commit a metadata change to a directory
unless it's fully up-to-date. You'll learn about attaching
<quote>properties</quote> to items in Chapter 6. A
directory's working revision defines a specific set of entries
and properties, and thus committing a property change to an
out-of-date directory may destroy properties you've not yet
seen.</para>

</sect2>

</sect1>

<sect1 id="svn-ch-2-sect-4">
<title>Summary</title>

<para>We've covered a number of fundamental Subversion concepts in
this chapter:</para>

<itemizedlist>
<listitem>
<para>We've introduced the notions of the central repository,
the client working copy, and the array of repository
revision trees.</para>
</listitem>

<listitem>
<para>We've seen some simple examples of how two collaborators
can use Subversion to publish and receive changes from one
another, using the 'copy-modify-merge' model.</para>
</listitem>

<listitem>
<para>We've talked a bit about the way Subversion tracks and
manages information in a working copy.</para>
</listitem>

</itemizedlist>

<para>At this point, you should have a good idea of how Subversion
works in the most general sense. Armed with this knowledge, you
should now be ready to jump into the next chapter, which is a
detailed tour of Subversion's commands and features. </para>

</sect1>

</chapter>

<!--
local variables:
sgml-parent-document: ("book.xml" "chapter")
end:
-->
Show details Hide details

Change log

r1122 by cmpilato on Feb 25, 2005   Diff
Rename tag to associate with English
version only.
Go to: 

Older revisions

r1107 by sussman on Feb 23, 2005   Diff
Create 'book-1.0-final' tag.  This is
a snapshot of the last version
of the book's trunk before we started
documenting 1.1 features.

r611 by mthelen on Jun 11, 2004   Diff
Fix small inconsistencies in command
line examples in the book.

* doc/book/book/appb.xml
  (svn-ap-b-sect-1.2.2): Change 'svn
...
r604 by sussman on May 27, 2004   Diff
Book tweaks:  add small <para>
introductions between <sect1> and
<sect2>.

* doc/book/book/ch02.xml: introduce
...
All revisions of this file

File info

Size: 32980 bytes, 749 lines

File properties

svn:mime-type
text/xml
svn:eol-style
native
Hosted by Google Code