Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documented Fossil for Web page |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d5fa0615101bbbda8324f6ec45348f63 |
User & Date: | peter 2011-12-04 15:04:02.844 |
Context
2011-12-04
| ||
15:10 | Polished Fossil page. check-in: 68e91ae209 user: peter tags: trunk | |
15:04 | Documented Fossil for Web page check-in: d5fa061510 user: peter tags: trunk | |
2011-11-08
| ||
22:46 | Updated introduction check-in: 474122c7bb user: peter tags: trunk | |
Changes
Added htdocs/fossil.wiki.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | Eskil can compare versions in meny revision control systems including Fossil. If you specify only one file on the command line to Eskil, it will automatically detect if the file is under revision control and enter revision control mode. By default the local file is compared against the latest checked in version. This is for the common case when you just want to know what you have changed before checking in. You can use the -r option to select which versions to compare. The -r option works as in fossil finfo. Examples: Compare file.txt with the latest checked in version: <pre>eskil file.txt</pre> Compare file.txt with the specified version: <pre>eskil -r rev file.txt</pre> Compare the two revisions. This does not involve the local copy of file.txt. <pre>eskil -r rev1 -r rev2 file.txt</pre> The -r options are also available in the GUI in the "Rev 1" and "Rev 2" fields. <h2>Commit support</h2> When comparing a file with the latest checked in version, Eskil can commit directly to Fossil. <h2>View all changes</h2> If the command line option -review is used, Eskil will generate a patch for the current tree and display it as in patch mode. <verbatim>eskil -preview [files] </verbatim> If file names are given after -review, only the listed files are included. The Commit button will be enabled allowing the viewed differences to be committed directly from Eskil. <h2>Conflict merging</h2> Eskil can be used as the conflict resolution tool for Fossil by configuring the gmerge-command setting like this: <pre>fossil settings gmerge-command 'eskil -fine -a "%baseline" "%merge" "%original" -o "%output"' -global</pre> |
Changes to htdocs/index.html.
︙ | ︙ | |||
38 39 40 41 42 43 44 | <a name="EskilFeatures"></a><h3>Features</h3> <ul> <li>Highlights changes within a line.</li> <li>Matches similar lines within a changed block to better show changed lines that are adjacent to added/removed lines.</li> <li>Recursive directory diff.</li> | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <a name="EskilFeatures"></a><h3>Features</h3> <ul> <li>Highlights changes within a line.</li> <li>Matches similar lines within a changed block to better show changed lines that are adjacent to added/removed lines.</li> <li>Recursive directory diff.</li> <li><a href='fossil.wiki'">Fossil</a>/CVS/RCS/ClearCase/GIT/SVN/BZR/HG/Perforce diff.</li> <li>Conflict merge and three-way merge.</li> <li>Commit changes directly from Eskil.</li> <li>View patch, from file or clipboard.</li> <li>Print to PDF.</li> <li>"Clip diff"</li> <li>Plugins for preprocessing files.</li> <li>Alignment and block diff functions for tricky diffs.</li> |
︙ | ︙ |