4. Type cd sandbox and press Enter.
5. Type svn info and press Enter.
$ svn info
Path: .
URL: http://projects.example.com/svn/sandbox/trunk
Repository Root: http://projects.example.com/svn/sandbox
Repository UUID: 677246c4-9c0b-4019-ac6e-f268985e4c37
Revision: 1
Node Kind: directory
Schedule: normal
Last Changed Author: user@example.com
Last Changed Rev: 1
Last Changed Date: 2007-08-11 14:01:20 +0100 (Sat, 11 Aug 2007)
Notice that we did not have to supply a URL for the information command this time.
This is because Subversion knows when it is in a folder under revision control due
to the hidden .svn folders containing its information. Try it out??”run svn info in
another (uncontrolled) folder and see what happens.
Numeric values do not take quotation marks while string values do.
But, when using the map notation, quotation marks are not required for
property names if they are written in camel-cased DOM notation.
Chapter 6
[ 63 ]
Now we have our working copy of the trunk, we can make some changes. We
should create a single or several files in our local sandbox folder. In the following
examples some simple Python scripts will be used for our files. When we have done
that, we need to let Subversion know about them??”until we do so, they will not be
under version control.
Pages:
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