Fossil SCM
Minor mods, and use <tt> for command output
Commit
cfc68d134939cb691ea7fe99d0eff8a6a27df83579c289f617ea0d88a8a675ba
Parent
3e44368b6c8a0b0…
1 file changed
+15
-15
+15
-15
| --- www/quickstart.wiki | ||
| +++ www/quickstart.wiki | ||
| @@ -16,11 +16,11 @@ | ||
| 16 | 16 | You can test that Fossil is present and working like this: |
| 17 | 17 | |
| 18 | 18 | <blockquote> |
| 19 | 19 | <b> |
| 20 | 20 | 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> | |
| 22 | 22 | </b> |
| 23 | 23 | </blockquote> |
| 24 | 24 | |
| 25 | 25 | <h2 id="workflow" name="fslclone">General Work Flow</h2> |
| 26 | 26 | |
| @@ -36,19 +36,19 @@ | ||
| 36 | 36 | <li>Check out a local tree. ([/help/open | fossil open]) |
| 37 | 37 | <li>Perform operations on the repository (including repository |
| 38 | 38 | configuration). |
| 39 | 39 | </ul> |
| 40 | 40 | |
| 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 | |
| 42 | 42 | can also be conveniently accessed from the build-in web interface. |
| 43 | 43 | |
| 44 | - <p>The following sections will give you a brief overview of these | |
| 44 | + <p>The following sections give a brief overview of these | |
| 45 | 45 | operations.</p> |
| 46 | 46 | |
| 47 | 47 | <h2 id="new">Starting A New Project</h2> |
| 48 | 48 | |
| 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 | |
| 50 | 50 | this way: ([/help/init | more info]) </p> |
| 51 | 51 | |
| 52 | 52 | <blockquote> |
| 53 | 53 | <b>fossil init </b><i> repository-filename</i> |
| 54 | 54 | </blockquote> |
| @@ -81,21 +81,21 @@ | ||
| 81 | 81 | </blockquote> |
| 82 | 82 | |
| 83 | 83 | If your logged-in username is 'exampleuser', you should see output something like this: |
| 84 | 84 | |
| 85 | 85 | <blockquote> |
| 86 | - <b> | |
| 86 | + <b><tt> | |
| 87 | 87 | Round-trips: 8 Artifacts sent: 0 received: 39421<br> |
| 88 | 88 | Clone done, sent: 2424 received: 42965725 ip: 10.10.10.0<br> |
| 89 | 89 | Rebuilding repository meta-data...<br> |
| 90 | 90 | 100% complete...<br> |
| 91 | 91 | Extra delta compression... <br> |
| 92 | 92 | Vacuuming the database... <br> |
| 93 | 93 | project-id: 94259BB9F186226D80E49D1FA2DB29F935CCA0333<br> |
| 94 | 94 | server-id: 016595e9043054038a9ea9bc526d7f33f7ac0e42<br> |
| 95 | 95 | admin-user: exampleuser (password is "yoWgDR42iv")><br> |
| 96 | - </b> | |
| 96 | + </tt></b> | |
| 97 | 97 | </blockquote> |
| 98 | 98 | |
| 99 | 99 | <p>If the remote repository requires a login, include a |
| 100 | 100 | userid in the URL like this: |
| 101 | 101 | |
| @@ -149,17 +149,17 @@ | ||
| 149 | 149 | </blockquote> |
| 150 | 150 | |
| 151 | 151 | for example: |
| 152 | 152 | |
| 153 | 153 | <blockquote> |
| 154 | - <b> | |
| 154 | + <b><tt> | |
| 155 | 155 | fossil open ../myclone.fossil<br> |
| 156 | 156 | BUILD.txt<br> |
| 157 | 157 | COPYRIGHT-BSD2.txt<br> |
| 158 | 158 | README.md<br> |
| 159 | 159 | ︙<br> |
| 160 | - </b> | |
| 160 | + </tt></b> | |
| 161 | 161 | </blockquote> |
| 162 | 162 | |
| 163 | 163 | (or "fossil open ..\myclone.fossil" on Windows). |
| 164 | 164 | |
| 165 | 165 | <p>This leaves you with the newest version of the tree |
| @@ -176,11 +176,11 @@ | ||
| 176 | 176 | <b>[/help/timeline | fossil timeline]</b><br> |
| 177 | 177 | <b>[/help/ls | fossil ls]</b><br> |
| 178 | 178 | <b>[/help/branch | fossil branch]</b><br> |
| 179 | 179 | </blockquote> |
| 180 | 180 | |
| 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 | |
| 182 | 182 | produce much output.</p> |
| 183 | 183 | |
| 184 | 184 | <p>Note that Fossil allows you to make multiple check-outs in |
| 185 | 185 | separate directories from the same repository. This enables you, |
| 186 | 186 | for example, to do builds from multiple branches or versions at |
| @@ -228,38 +228,38 @@ | ||
| 228 | 228 | |
| 229 | 229 | <p>To see exactly what change was made you can use the command</p> |
| 230 | 230 | [/help/diff | fossil diff]: |
| 231 | 231 | <blockquote> |
| 232 | 232 | <b> |
| 233 | - fossil diff <br> | |
| 233 | + fossil diff <br><tt> | |
| 234 | 234 | Index: README.md<br> |
| 235 | 235 | ============================================================<br> |
| 236 | 236 | --- README.md<br> |
| 237 | 237 | +++ README.md<br> |
| 238 | 238 | @@ -1,5 +1,6 @@<br> |
| 239 | - +I made a change<br> | |
| 239 | + +Made some changes to the project<br> | |
| 240 | 240 | # Original text<br> |
| 241 | - </b> | |
| 241 | + </tt></b> | |
| 242 | 242 | </blockquote> |
| 243 | 243 | |
| 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 | |
| 245 | 245 | when you did "fossil open". An open is the first checkout from a repository |
| 246 | 246 | into a new directory. </p> |
| 247 | 247 | |
| 248 | 248 | <p>To commit your changes to a local-only repository:</p> |
| 249 | 249 | <blockquote> |
| 250 | 250 | <b> |
| 251 | - fossil commit (... Fossil will start your editor, if defined)<br> | |
| 251 | + fossil commit (... Fossil will start your editor, if defined)<br><tt> | |
| 252 | 252 | # Enter a commit message for this check-in. Lines beginning with # are ignored.<br> |
| 253 | 253 | #<br> |
| 254 | 254 | # user: exampleuser<br> |
| 255 | 255 | # tags: trunk<br> |
| 256 | 256 | #<br> |
| 257 | 257 | # EDITED README.md<br> |
| 258 | 258 | Edited file to add description of code changes<br> |
| 259 | 259 | New_Version: 7b9a416ced4a69a60589dde1aedd1a30fde8eec3528d265dbeed5135530440ab<br> |
| 260 | - </b> | |
| 260 | + </tt></b> | |
| 261 | 261 | </blockquote> |
| 262 | 262 | |
| 263 | 263 | <p>You will be prompted for check-in comments using whatever editor |
| 264 | 264 | is specified by your VISUAL or EDITOR environment variable. If none is |
| 265 | 265 | specified Fossil uses line-editing in the terminal.</p> |
| 266 | 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 | 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 |