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
|
@need 3200
@node Getting Started with arch
@appendix Getting Started with arch
Here is a whirlwind guide to getting started with @code{arch}. This appendix
presumes that you are familiar with the material in previous chapters.
After building and installing @code{arch}, try these steps:
@need 3200
@section Set Your arch User Id
The first step is to set your id with a command like:
@example
@group
% larch my-id "Jane Hacker <jane.hacker@@gnu.org>"
@end group
@group
@end group
@end example
See @ref{The arch Global Name-space of Users}.
@need 3200
@section Create Your First Archive
Create your own archive with:
@example
@group
% larch make-archive NAME DIRECTORY
@end group
@group
@end group
@end example
Make that your default archive with:
@example
@group
% larch my-default-archive NAME
@end group
@group
@end group
@end example
You might want to edit the top-level @code{=README} file in your archive to
describe what you intend to store there. Editting @code{=README} files is
one of the few exceptions to the rule that you should never modify
files in the archive "by hand".
See @ref{Archives}.
@need 3200
@section Create Your Revision Library
Revision libraries are strictly optional, but they are desirable
if you want to obtain the best performance from @code{arch} or use all
of the available features.
To create a library, simply create an empty directory:
@example
@group
% mkdir "@{revisions@}"
@end group
@group
@end group
@end example
@noindent
and tell @code{arch} about it:
@example
@group
% larch my-revision-library "`pwd`/@{revisions@}"
@end group
@group
@end group
@end example
See @ref{Revision Tree Libraries}.
@need 3200
@section Set Up Your Revision Browser
If you want to be able to browse change sets and past revisions with a
web browser, you need to set up a browser directory.
Create an empty directory:
@example
@group
% mkdir "@{browser@}"
@end group
@group
@end group
@end example
@noindent
and mark that directory as a browser:
@example
@group
% touch "@{browser@}/=browser"
@end group
@group
@end group
@end example
There is no need to inform @code{arch} of the location of your browser at
this step -- that will come later when you set up a "notifier" which
updates the browser.
See @ref{arch Web Site Generation Tools}.
@need 3200
@section Set Up Notifiers
If you want your library and browser to be updated automatically as
you commit revisions to the repository, you need to set up a
@geindex notifier
@dfn{notifier}:
@example
@group
% mkdir @{notify@}
@end group
@group
@end group
@end example
@example
@group
% cd @{notify@}
@end group
@group
@end group
@end example
@example
@group
[ edit "=rules.archives" ]
@end group
@group
@end group
@end example
As an example of the format of @geindex =rules.archives
@dfn{=rules.archives}, here is the one I
use. In the documentation, long lines have been broken up with
continuation markers (@code{\}), but in the real file, they are just very
long lines:
@example
@group
lord@@regexps.com--2002 \
mail-new-categories:lord \
mail-new-branches:lord \
mail-new-versions:lord \
mail-new-revisions:lord
@end group
@group
@end group
@end example
@example
@group
lord@@regexps.com--2002 \
noop:notify-library:lord \
noop:notify-library:lord \
noop:notify-library:lord \
notify-library:lord
@end group
@group
@end group
@end example
@example
@group
lord@@regexps.com--2002 \
noop:notify-library:lord \
noop:notify-library:lord \
noop:notify-library:lord \
notify-browser:lord
@end group
@group
@end group
@end example
The first line defines rules for sending email when new revisions are
committed, or when categories, branches, or versions are created..
The second line updates the revision library when new revisions are
added to the library. The third line updates the browser whe new
revisions are added.
Having set up your notifier directory, inform arch:
@example
@group
% larch my-notifier "`pwd`/@{notify@}
@end group
@group
@end group
@end example
See @ref{arch Triggers} for more information.
@need 3200
@section Get to Work
Now you can create branches from other archives, import your own
original projects, and otherwise use the various commands documented
in this manual.
Additional step by step directions can be found in the @geindex docs/examples
@dfn{docs/examples}
directory of distributions of arch.
|