Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Revise and enhance the web page that describes how to obtain the latest unreleased source code. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
404705e45f20b1e02d3e06ade7893ed8 |
User & Date: | mistachkin 2012-09-19 02:57:57.962 |
Context
2012-09-19
| ||
11:01 | Minor editorial changes to the homepage. check-in: 8747cf823c user: drh tags: trunk | |
02:57 | Revise and enhance the web page that describes how to obtain the latest unreleased source code. check-in: 404705e45f user: mistachkin tags: trunk | |
02:22 | Fix broken internal links on the index page. check-in: 1b92687369 user: mistachkin tags: trunk | |
Changes
Changes to www/source.wiki.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>Source Code</title> <p> Follow these steps to obtain the latest (i.e. unreleased) source code for the System.Data.SQLite project. To obtain the latest officially released source code instead, refer to the [./downloads.wiki | downloads page]. Unless otherwise noted, all steps need to be done in the order specified. </p> <a name="assumptions"></a> <h2>Assumptions & Prerequisites</h2> <p> | | | | | > > > > > > | | | > | > > | | | | | > | > > | | | | | | | > | 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 | <title>Source Code</title> <p> Follow these steps to obtain the latest (i.e. unreleased) source code for the System.Data.SQLite project. To obtain the latest officially released source code instead, refer to the [./downloads.wiki | downloads page]. Unless otherwise noted, all steps need to be done in the order specified. </p> <a name="assumptions"></a> <h2>Assumptions & Prerequisites</h2> <p> The string "<b><root></b>" represents the directory where you would like a local working copy of source tree (a.k.a. the working check-out directory) for the System.Data.SQLite project to reside (this should be a completely empty directory). </p> <p> The string "<b><repositories></b>" represents the directory where you would like the local clone of the repository for the System.Data.SQLite project (and potentially other projects) to reside. </p> <a name="fossil"></a> <h2>Obtain & Install Fossil</h2> <p> The [http://www.fossil-scm.org | Fossil] open-source [http://en.wikipedia.org/wiki/Distributed_revision_control | distributed version control] system is a computer program that must be installed on your machine before you use it. Fortunately, installing Fossil is very easy. Fossil consists of a single executable file that you simply download and run. For convenience, the Fossil executable file should be placed in a directory present in your [http://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH]. To uninstall Fossil, simply delete the executable file. [http://www.fossil-scm.org/index.html/doc/tip/www/quickstart.wiki | Detailed instructions] for installing and getting started with Fossil are available on the [http://www.fossil-scm.org/ | Fossil website]. </p> <a name="clone"></a> <h2>Clone Repository (Windows)</h2> <ol> <li>Open a Windows command prompt using "<b>cmd.exe</b>".</li> <li> Change the current directory to "<b><root></b>" using a command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a complete clone (i.e. local copy) of the entire source code repository for the System.Data.SQLite project, including the entire check-in history: <b>fossil [http://www.fossil-scm.org/index.html/help/clone | clone] http://system.data.sqlite.org/ <repositories>\sds.fossil</b> </li> <li> The repository itself uses an [http://www.fossil-scm.org/index.html/doc/trunk/www/fileformat.wiki | enduring file format] stored in a single [http://www.fossil-scm.org/index.html/doc/trunk/www/tech_overview.wiki | SQLite database file] with a particular schema. </li> <li> In this case, after executing the [http://www.fossil-scm.org/index.html/help/clone | clone] command, the local clone of the repository will be placed into the "<b>sds.fossil</b>" file in the <b><repositories></b> directory. </li> </ol> <a name="working"></a> <h2>Working Copy (Windows)</h2> <ol> <li>Open a Windows command prompt using "<b>cmd.exe</b>".</li> <li> Change the current directory to "<b><root></b>" using a command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a local working copy of all the files that are currently part of the System.Data.SQLite project: <b>fossil [http://www.fossil-scm.org/index.html/help/open | open] <repositories>\sds.fossil</b> </li> <li> The local source tree should now be ready for use as described in the [./build.wiki | build procedures] and/or [./test.wiki | test procedures]. </li> <li> In the future, to update the local working copy with the latest changes from the official System.Data.SQLite repository (i.e. instead of having to re-clone the entire thing), enter the following command from the same directory where a working copy is located: <b>fossil [http://www.fossil-scm.org/index.html/help/update | update]</b> </li> </ol> |