Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More tweaks to the whynotgit.html document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
200882d3ffbf2087da5e98fb150ef16a |
User & Date: | drh 2018-04-12 18:21:33.312 |
Context
2018-04-13
| ||
15:09 | Fix a minor formatting issue in the tempfiles.html document. (check-in: 9f03d7ca10 user: drh tags: trunk) | |
2018-04-12
| ||
18:21 | More tweaks to the whynotgit.html document. (check-in: 200882d3ff user: drh tags: trunk) | |
18:08 | Fix yet another typo in whynotgit.html (check-in: 13eff8bb25 user: drh tags: trunk) | |
Changes
Changes to pages/whynotgit.in.
︙ | ︙ | |||
235 236 237 238 239 240 241 | <p> The [https://sqlite.org/src/timeline|SQLite Fossil Repository] contains links for downloading a Tarball, ZIP Archive, or [SQLite Archive] for any historical version of SQLite. The URLs for these downloads are simple and can be incorporated easily into automated tools. The format is: | | | | > > > > > > > > > > > > > > > > > > > > > > > > > | > > | > > > | | > | < < | 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 | <p> The [https://sqlite.org/src/timeline|SQLite Fossil Repository] contains links for downloading a Tarball, ZIP Archive, or [SQLite Archive] for any historical version of SQLite. The URLs for these downloads are simple and can be incorporated easily into automated tools. The format is: <blockquote> <tt>https://sqlite.org/src/tarball/</tt><i>VERSION</i><tt>/sqlite.tar.gz</tt> </blockquote> <p> Simply replace <i>VERSION</i> with some description of the version to be downloaded. The <i>VERSION</i> can be a prefix of the cryptographic hash name of a specific check-in, or the name of a branch (in which case the most recent version of the branch is fetched) or a tag for a specific check-in like "version-3.23.1": <blockquote> <tt>https://sqlite.org/src/tarball/version-3.23.1/sqlite.tar.gz</tt> </blockquote> <p>To get the latest release, use "release" for <i>VERSION</i>, like this: <blockquote> <tt>https://sqlite.org/src/tarball/release/sqlite.tar.gz</tt> </blockquote> <p> To get the latest trunk check-in, us "trunk" for <i>VERSION</i>: <blockquote> <tt>https://sqlite.org/src/tarball/trunk/sqlite.tar.gz</tt> </blockquote> <p> And so forth. For ZIP archives and SQLite Archives, simply change the "/tarball/" element into either "/zip/" or "/sqlar/", and maybe also change the name of the download file to have a ".zip" or ".sqlar" suffix. <h2>Fossil Access</h2> <p> Fossil is easy to install and use. Here are the steps for unix. (Windows is similar.) <ol> <li> Download the self-contained Fossil executable from [https://fossil-scm.org/fossil/uv/download.html] and put the executable somewhere on your $PATH. <li><tt>mkdir ~/fossils</tt> <li><tt>fossil clone https://sqlite.org/src ~/fossils/sqlite.fossil</tt> <li><tt>mkdir ~/sqlite; cd ~/sqlite</tt> <li><tt>fossil open ~/fossils/sqlite.fossil</tt> </ol> <p> At this point you are ready to type "<tt>./configure; make</tt>" (or on Windows with MSVC, "<tt>nmake /f Makefile.msc</tt>"). <p> To change your checkout to a different version of Fossil use the "update" command: <blockquote> <tt>fossil update </tt><i>VERSION</i> </blockquote> <p> Use "trunk" for <i>VERSION</i> to get the latest trunk version of SQLite. Or use a prefix of a cryptographic hash name, or the name of some branch or tag. See [https://fossil-scm.org/fossil/doc/trunk/www/checkin_names.wiki] for more suggestions on what names can be used for <i>VERSION</i>. <p> Use the "<tt>fossil ui</tt>" command from within the ~/sqlite checkout to bring up a local copy of the website. <p> Additional documentation on Fossil can be found at [https://fossil-scm.org/fossil/doc/trunk/www/permutedindex.html] <p> Do not be afraid to explore and experiment. Without a log-in you won't be able to push back any changes you make, so you cannot damage the project. <h1>See Also</h1> <p>Other pages that talk about Fossil and Git include: <ul> <li><p>[https://fossil-scm.org/fossil/doc/trunk/www/fossil-v-git.wiki|Fossil vs. Git] <li><p>[https://www.fossil-scm.org/fossil/doc/trunk/www/quotes.wiki|What others say about Fossil and Git] </ul> |