Fossil SCM

Minor mods, and use <tt> for command output

danshearer 2020-10-26 16:35 quickstart
Commit cfc68d134939cb691ea7fe99d0eff8a6a27df83579c289f617ea0d88a8a675ba
1 file changed +15 -15
--- www/quickstart.wiki
+++ www/quickstart.wiki
@@ -16,11 +16,11 @@
1616
You can test that Fossil is present and working like this:
1717
1818
<blockquote>
1919
<b>
2020
fossil version<br>
21
- This is fossil version 2.13 [309af345ab] 2020-09-28 04:02:55 UTC<br>
21
+ <tt>This is fossil version 2.13 [309af345ab] 2020-09-28 04:02:55 UTC</tt><br>
2222
</b>
2323
</blockquote>
2424
2525
<h2 id="workflow" name="fslclone">General Work Flow</h2>
2626
@@ -36,19 +36,19 @@
3636
<li>Check out a local tree. ([/help/open | fossil open])
3737
<li>Perform operations on the repository (including repository
3838
configuration).
3939
</ul>
4040
41
- Fossil can be entirely driven from the command line, while many features
41
+ Fossil can be entirely driven from the command line. Many features
4242
can also be conveniently accessed from the build-in web interface.
4343
44
- <p>The following sections will give you a brief overview of these
44
+ <p>The following sections give a brief overview of these
4545
operations.</p>
4646
4747
<h2 id="new">Starting A New Project</h2>
4848
49
- <p>To start a new project with fossil, create a new empty repository
49
+ <p>To start a new project with fossil create a new empty repository
5050
this way: ([/help/init | more info]) </p>
5151
5252
<blockquote>
5353
<b>fossil init </b><i> repository-filename</i>
5454
</blockquote>
@@ -81,21 +81,21 @@
8181
</blockquote>
8282
8383
If your logged-in username is 'exampleuser', you should see output something like this:
8484
8585
<blockquote>
86
- <b>
86
+ <b><tt>
8787
Round-trips: 8 Artifacts sent: 0 received: 39421<br>
8888
Clone done, sent: 2424 received: 42965725 ip: 10.10.10.0<br>
8989
Rebuilding repository meta-data...<br>
9090
100% complete...<br>
9191
Extra delta compression... <br>
9292
Vacuuming the database... <br>
9393
project-id: 94259BB9F186226D80E49D1FA2DB29F935CCA0333<br>
9494
server-id: 016595e9043054038a9ea9bc526d7f33f7ac0e42<br>
9595
admin-user: exampleuser (password is "yoWgDR42iv")><br>
96
- </b>
96
+ </tt></b>
9797
</blockquote>
9898
9999
<p>If the remote repository requires a login, include a
100100
userid in the URL like this:
101101
@@ -149,17 +149,17 @@
149149
</blockquote>
150150
151151
for example:
152152
153153
<blockquote>
154
- <b>
154
+ <b><tt>
155155
fossil open ../myclone.fossil<br>
156156
BUILD.txt<br>
157157
COPYRIGHT-BSD2.txt<br>
158158
README.md<br>
159159
︙<br>
160
- </b>
160
+ </tt></b>
161161
</blockquote>
162162
163163
(or "fossil open ..\myclone.fossil" on Windows).
164164
165165
<p>This leaves you with the newest version of the tree
@@ -176,11 +176,11 @@
176176
<b>[/help/timeline | fossil timeline]</b><br>
177177
<b>[/help/ls | fossil ls]</b><br>
178178
<b>[/help/branch | fossil branch]</b><br>
179179
</blockquote>
180180
181
- <p>If you created a new respository using "fossil init" then some commands will not
181
+ <p>If you created a new respository using "fossil init" some commands will not
182182
produce much output.</p>
183183
184184
<p>Note that Fossil allows you to make multiple check-outs in
185185
separate directories from the same repository. This enables you,
186186
for example, to do builds from multiple branches or versions at
@@ -228,38 +228,38 @@
228228
229229
<p>To see exactly what change was made you can use the command</p>
230230
[/help/diff | fossil diff]:
231231
<blockquote>
232232
<b>
233
- fossil diff <br>
233
+ fossil diff <br><tt>
234234
Index: README.md<br>
235235
============================================================<br>
236236
--- README.md<br>
237237
+++ README.md<br>
238238
@@ -1,5 +1,6 @@<br>
239
- +I made a change<br>
239
+ +Made some changes to the project<br>
240240
# Original text<br>
241
- </b>
241
+ </tt></b>
242242
</blockquote>
243243
244
- <p>"fossil diff" is the difference between your tree on disk now and as it was
244
+ <p>"fossil diff" is the difference between your tree on disk now and as the tree was
245245
when you did "fossil open". An open is the first checkout from a repository
246246
into a new directory. </p>
247247
248248
<p>To commit your changes to a local-only repository:</p>
249249
<blockquote>
250250
<b>
251
- fossil commit (... Fossil will start your editor, if defined)<br>
251
+ fossil commit (... Fossil will start your editor, if defined)<br><tt>
252252
# Enter a commit message for this check-in. Lines beginning with # are ignored.<br>
253253
#<br>
254254
# user: exampleuser<br>
255255
# tags: trunk<br>
256256
#<br>
257257
# EDITED README.md<br>
258258
Edited file to add description of code changes<br>
259259
New_Version: 7b9a416ced4a69a60589dde1aedd1a30fde8eec3528d265dbeed5135530440ab<br>
260
- </b>
260
+ </tt></b>
261261
</blockquote>
262262
263263
<p>You will be prompted for check-in comments using whatever editor
264264
is specified by your VISUAL or EDITOR environment variable. If none is
265265
specified Fossil uses line-editing in the terminal.</p>
266266
--- www/quickstart.wiki
+++ www/quickstart.wiki
@@ -16,11 +16,11 @@
16 You can test that Fossil is present and working like this:
17
18 <blockquote>
19 <b>
20 fossil version<br>
21 This is fossil version 2.13 [309af345ab] 2020-09-28 04:02:55 UTC<br>
22 </b>
23 </blockquote>
24
25 <h2 id="workflow" name="fslclone">General Work Flow</h2>
26
@@ -36,19 +36,19 @@
36 <li>Check out a local tree. ([/help/open | fossil open])
37 <li>Perform operations on the repository (including repository
38 configuration).
39 </ul>
40
41 Fossil can be entirely driven from the command line, while many features
42 can also be conveniently accessed from the build-in web interface.
43
44 <p>The following sections will give you a brief overview of these
45 operations.</p>
46
47 <h2 id="new">Starting A New Project</h2>
48
49 <p>To start a new project with fossil, create a new empty repository
50 this way: ([/help/init | more info]) </p>
51
52 <blockquote>
53 <b>fossil init </b><i> repository-filename</i>
54 </blockquote>
@@ -81,21 +81,21 @@
81 </blockquote>
82
83 If your logged-in username is 'exampleuser', you should see output something like this:
84
85 <blockquote>
86 <b>
87 Round-trips: 8 Artifacts sent: 0 received: 39421<br>
88 Clone done, sent: 2424 received: 42965725 ip: 10.10.10.0<br>
89 Rebuilding repository meta-data...<br>
90 100% complete...<br>
91 Extra delta compression... <br>
92 Vacuuming the database... <br>
93 project-id: 94259BB9F186226D80E49D1FA2DB29F935CCA0333<br>
94 server-id: 016595e9043054038a9ea9bc526d7f33f7ac0e42<br>
95 admin-user: exampleuser (password is "yoWgDR42iv")><br>
96 </b>
97 </blockquote>
98
99 <p>If the remote repository requires a login, include a
100 userid in the URL like this:
101
@@ -149,17 +149,17 @@
149 </blockquote>
150
151 for example:
152
153 <blockquote>
154 <b>
155 fossil open ../myclone.fossil<br>
156 BUILD.txt<br>
157 COPYRIGHT-BSD2.txt<br>
158 README.md<br>
159 ︙<br>
160 </b>
161 </blockquote>
162
163 (or "fossil open ..\myclone.fossil" on Windows).
164
165 <p>This leaves you with the newest version of the tree
@@ -176,11 +176,11 @@
176 <b>[/help/timeline | fossil timeline]</b><br>
177 <b>[/help/ls | fossil ls]</b><br>
178 <b>[/help/branch | fossil branch]</b><br>
179 </blockquote>
180
181 <p>If you created a new respository using "fossil init" then some commands will not
182 produce much output.</p>
183
184 <p>Note that Fossil allows you to make multiple check-outs in
185 separate directories from the same repository. This enables you,
186 for example, to do builds from multiple branches or versions at
@@ -228,38 +228,38 @@
228
229 <p>To see exactly what change was made you can use the command</p>
230 [/help/diff | fossil diff]:
231 <blockquote>
232 <b>
233 fossil diff <br>
234 Index: README.md<br>
235 ============================================================<br>
236 --- README.md<br>
237 +++ README.md<br>
238 @@ -1,5 +1,6 @@<br>
239 +I made a change<br>
240 # Original text<br>
241 </b>
242 </blockquote>
243
244 <p>"fossil diff" is the difference between your tree on disk now and as it was
245 when you did "fossil open". An open is the first checkout from a repository
246 into a new directory. </p>
247
248 <p>To commit your changes to a local-only repository:</p>
249 <blockquote>
250 <b>
251 fossil commit (... Fossil will start your editor, if defined)<br>
252 # Enter a commit message for this check-in. Lines beginning with # are ignored.<br>
253 #<br>
254 # user: exampleuser<br>
255 # tags: trunk<br>
256 #<br>
257 # EDITED README.md<br>
258 Edited file to add description of code changes<br>
259 New_Version: 7b9a416ced4a69a60589dde1aedd1a30fde8eec3528d265dbeed5135530440ab<br>
260 </b>
261 </blockquote>
262
263 <p>You will be prompted for check-in comments using whatever editor
264 is specified by your VISUAL or EDITOR environment variable. If none is
265 specified Fossil uses line-editing in the terminal.</p>
266
--- www/quickstart.wiki
+++ www/quickstart.wiki
@@ -16,11 +16,11 @@
16 You can test that Fossil is present and working like this:
17
18 <blockquote>
19 <b>
20 fossil version<br>
21 <tt>This is fossil version 2.13 [309af345ab] 2020-09-28 04:02:55 UTC</tt><br>
22 </b>
23 </blockquote>
24
25 <h2 id="workflow" name="fslclone">General Work Flow</h2>
26
@@ -36,19 +36,19 @@
36 <li>Check out a local tree. ([/help/open | fossil open])
37 <li>Perform operations on the repository (including repository
38 configuration).
39 </ul>
40
41 Fossil can be entirely driven from the command line. Many features
42 can also be conveniently accessed from the build-in web interface.
43
44 <p>The following sections give a brief overview of these
45 operations.</p>
46
47 <h2 id="new">Starting A New Project</h2>
48
49 <p>To start a new project with fossil create a new empty repository
50 this way: ([/help/init | more info]) </p>
51
52 <blockquote>
53 <b>fossil init </b><i> repository-filename</i>
54 </blockquote>
@@ -81,21 +81,21 @@
81 </blockquote>
82
83 If your logged-in username is 'exampleuser', you should see output something like this:
84
85 <blockquote>
86 <b><tt>
87 Round-trips: 8 Artifacts sent: 0 received: 39421<br>
88 Clone done, sent: 2424 received: 42965725 ip: 10.10.10.0<br>
89 Rebuilding repository meta-data...<br>
90 100% complete...<br>
91 Extra delta compression... <br>
92 Vacuuming the database... <br>
93 project-id: 94259BB9F186226D80E49D1FA2DB29F935CCA0333<br>
94 server-id: 016595e9043054038a9ea9bc526d7f33f7ac0e42<br>
95 admin-user: exampleuser (password is "yoWgDR42iv")><br>
96 </tt></b>
97 </blockquote>
98
99 <p>If the remote repository requires a login, include a
100 userid in the URL like this:
101
@@ -149,17 +149,17 @@
149 </blockquote>
150
151 for example:
152
153 <blockquote>
154 <b><tt>
155 fossil open ../myclone.fossil<br>
156 BUILD.txt<br>
157 COPYRIGHT-BSD2.txt<br>
158 README.md<br>
159 ︙<br>
160 </tt></b>
161 </blockquote>
162
163 (or "fossil open ..\myclone.fossil" on Windows).
164
165 <p>This leaves you with the newest version of the tree
@@ -176,11 +176,11 @@
176 <b>[/help/timeline | fossil timeline]</b><br>
177 <b>[/help/ls | fossil ls]</b><br>
178 <b>[/help/branch | fossil branch]</b><br>
179 </blockquote>
180
181 <p>If you created a new respository using "fossil init" some commands will not
182 produce much output.</p>
183
184 <p>Note that Fossil allows you to make multiple check-outs in
185 separate directories from the same repository. This enables you,
186 for example, to do builds from multiple branches or versions at
@@ -228,38 +228,38 @@
228
229 <p>To see exactly what change was made you can use the command</p>
230 [/help/diff | fossil diff]:
231 <blockquote>
232 <b>
233 fossil diff <br><tt>
234 Index: README.md<br>
235 ============================================================<br>
236 --- README.md<br>
237 +++ README.md<br>
238 @@ -1,5 +1,6 @@<br>
239 +Made some changes to the project<br>
240 # Original text<br>
241 </tt></b>
242 </blockquote>
243
244 <p>"fossil diff" is the difference between your tree on disk now and as the tree was
245 when you did "fossil open". An open is the first checkout from a repository
246 into a new directory. </p>
247
248 <p>To commit your changes to a local-only repository:</p>
249 <blockquote>
250 <b>
251 fossil commit (... Fossil will start your editor, if defined)<br><tt>
252 # Enter a commit message for this check-in. Lines beginning with # are ignored.<br>
253 #<br>
254 # user: exampleuser<br>
255 # tags: trunk<br>
256 #<br>
257 # EDITED README.md<br>
258 Edited file to add description of code changes<br>
259 New_Version: 7b9a416ced4a69a60589dde1aedd1a30fde8eec3528d265dbeed5135530440ab<br>
260 </tt></b>
261 </blockquote>
262
263 <p>You will be prompted for check-in comments using whatever editor
264 is specified by your VISUAL or EDITOR environment variable. If none is
265 specified Fossil uses line-editing in the terminal.</p>
266

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button