Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Changed URLs for embedded docs, changed comment in add.c:mv_cmd to read "does not rename" instead of "does rename" |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
67f44bb301f598566551683bdeb1b9ac |
| User & Date: | kejoki 2008-11-12 04:09:42.000 |
References
|
2008-11-15
| ||
| 06:44 | • New ticket [4f6b211d6b] some new wikis not visible as wiki. ... (artifact: fa1291780f user: anonymous) | |
Context
|
2008-11-15
| ||
| 04:08 | Updated the main page, added add... ... (check-in: 9436bb75c3 user: kejoki tags: trunk) | |
|
2008-11-12
| ||
| 04:09 | Changed URLs for embedded docs, changed comment in add.c:mv_cmd to read "does not rename" instead of "does rename" ... (check-in: 67f44bb301 user: kejoki tags: trunk) | |
| 03:46 | Change the reference docs to embedded (still need to remove wiki versions); add the mv|rename command. ... (check-in: f15298fd4e user: kejoki tags: trunk) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
154 155 156 157 158 159 160 | ** COMMAND: rename ** ** Usage: %fossil mv|rename OLDNAME NEWNAME ** or: %fossil mv|rename OLDNAME... DIR ** ** Move or rename one or more files within the tree ** | | | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
** COMMAND: rename
**
** Usage: %fossil mv|rename OLDNAME NEWNAME
** or: %fossil mv|rename OLDNAME... DIR
**
** Move or rename one or more files within the tree
**
** This command does not rename the files on disk. All this command does is
** record the fact that filenames have changed so that appropriate notations
** can be made at the next commit/checkin.
*/
void mv_cmd(void){
int i;
int vid;
char *zDest;
|
| ︙ | ︙ |
Changes to www/cmd_extra.wiki.
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | directories, then<code> fossil extra </code> will give you a list. If you don't think this is all that useful, then you've never had to write a shell script that only affects project files and leaves everything else alone. ;) The <code>extra</code> command is almost, but not quite entirely, the exact | | | | 20 21 22 23 24 25 26 27 28 29 30 | directories, then<code> fossil extra </code> will give you a list. If you don't think this is all that useful, then you've never had to write a shell script that only affects project files and leaves everything else alone. ;) The <code>extra</code> command is almost, but not quite entirely, the exact opposite of the <a href="cmd_ls.wiki><code>ls</code></a> command. See also: <a href="cmd_clean.wiki">fossil clean</a>, <a href="cmd_ls.wiki">fossil ls</a>, <a href="reference.wiki"> Reference</a> |
Changes to www/cmd_ls.wiki.
1 2 3 4 5 | <h2>ls</h2> The <code>ls</code><a href="#notes">*</a> command is informational, it doesn't do anything to a checked-out project, but it tells you something about it. | | | | | | | | | | 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 |
<h2>ls</h2>
The <code>ls</code><a href="#notes">*</a> command is informational, it doesn't do anything to
a checked-out project, but it tells you something about it.
A project consists of a "source tree" of "artifacts" (see <a href="concepts.wiki">Fossil concepts</a>.)
From a practical standpoint this is a set of files and directories rooted
at a main project directory. The files that are under source control aren't
particularly distinguishable from those that aren't. The <code>ls</code> and
<code>extra</code> commands provide this information.
<code>fossil ls</code> produces a listing of the files which are under source
control <i>and</i> their status within the repository. The output is a simple
list of STATUS/filepath pairs on separate lines. The status of a file will
likely be one of ADDED, UNCHANGED, UPDATED, or DELETED. <a href="#notes">*</a>
It's important to realize that this is the status <i>relative to the repository</i>,
it's the status as <b>fossil</b> sees it and has nothing to do with
filesystem status. If you're new to source-management/version-control
systems, you'll probably get bit by this concept-bug at least once.
To really see the difference, issue an <code>ls</code> before and after doing
a <a href="cmd_commit.wiki"><code>commit</code></a>. Before, the status of files may be any of the three,
but after <code>commit</code>ting changes the status will be UNCHANGED "across
the board."
By way of example, here's what I see if I <code>fossil ls</code> in the
directory where I have checked out my testing repository:
<nowiki><pre>
$ fossil ls
ADDED feegboing
UNCHANGED fossil_docs.txt
DELETED nibcrod
</pre></nowiki>
But if I do a simple ls, what I get is
<nowiki><pre>
$ ls
feegboing fossil_docs.txt manifest.uuid noodle.txt
_FOSSIL_ manifest nibcrod
</pre></nowiki>
The <code>ls</code> command is almost, but not quite entirely, the exact
opposite of the
<a href="cmd_extra.wiki"><code>extra</code> command</a>.
<a name="notes">Notes:</a>
* If you come from the <b>Windows</b> world, it will help to know that 'ls' is the usual <b>unix</b> command for listing a directory.
* There are more states for a file to be in than those listed, including MISSING, EDITED, RENAMED and a couple of others.
See also: <a href="cmd_add.wiki">fossil add</a>, <a href="rm.wiki">
fossil rm</a>, <a href="cmd_extra.wiki">fossil extra</a>,
<a href="cmd_commit.wiki">fossil commit</a>,
<a href="concepts.wiki">Fossil concepts</a>,
<a href="reference.wiki">Reference</a>
|
Changes to www/reference.wiki.
1 2 3 4 5 6 7 | <h2>Command Line Interface Reference</h2> This is an easy introduction to the fossil command line interface (cli). It assumes some familiarity with using the command line, and with Source Code Maintenence (SCM) systems—but not <i>too</i> much. If you are trying to find information about fossil's web capabilities, | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <h2>Command Line Interface Reference</h2> This is an easy introduction to the fossil command line interface (cli). It assumes some familiarity with using the command line, and with Source Code Maintenence (SCM) systems—but not <i>too</i> much. If you are trying to find information about fossil's web capabilities, see the <a href="index.wiki">Fossil Home</a> and <a href="wikitheory.wiki">Fossil Wiki</a> pages for pointers. <h3>Things to note</h3> * Fossil cli commands do not use special delimeters, they use spaces. This is traditional with VCS/SCM. Some <i>options</i> to fossil commands <i>do</i> use special delimiters, particularly the '-' (hyphen, or dash) character. This is very similar to Tcl. Think of fossil as a shell you invoke and feed a command to, including any options, and it will make |
| ︙ | ︙ | |||
100 101 102 103 104 105 106 |
<b>What follows</b> is a survey of what you get if you type<code>
fossil help <i>command</i> </code>for all of the
commands listed above. There are links to individual pages for each
of them; pages with content (not all of them are done) go into the command
in a bit more depth than the program help.
<nowiki><pre>
| | | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
<b>What follows</b> is a survey of what you get if you type<code>
fossil help <i>command</i> </code>for all of the
commands listed above. There are links to individual pages for each
of them; pages with content (not all of them are done) go into the command
in a bit more depth than the program help.
<nowiki><pre>
<a name="add">Usage:</a><code><a href="cmd_add.wiki">fossil add</a></code> FILE...
Make arrangements to add one or more files to the current checkout
at the next commit.
<a name="all">Usage:</a><code><a href="cmd_all.wiki">fossil all</a></code> (list|pull|push|rebuild|sync)
The ~/.fossil file records the location of all repositories for a
user. This command performs certain operations on all repositories
that can be useful before or after a period of disconnection operation.
Available operations are:
list Display the location of all repositories
|
| ︙ | ︙ | |||
128 129 130 131 132 133 134 |
sync Run a "sync" on all repositories
Respositories are automatically added to the set of known repositories
when one of the following commands against the repository: clone, info,
pull, push, or sync
| | | | | | | | | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
sync Run a "sync" on all repositories
Respositories are automatically added to the set of known repositories
when one of the following commands against the repository: clone, info,
pull, push, or sync
<a name="cgi">Usage:</a><a href="cmd_cgi">fossil cgi</a> SCRIPT
The SCRIPT argument is the name of a file that is the CGI script
that is being run. The command name, "cgi", may be omitted if
the GATEWAY_INTERFACE environment variable is set to "CGI" (which
should always be the case for CGI scripts run by a webserver.) The
SCRIPT file should look something like this:
#!/usr/bin/fossil
repository: /home/somebody/project.db
The second line defines the name of the repository. After locating
the repository, fossil will generate a webpage on stdout based on
the values of standard CGI environment variables.
<a name="changes">Usage:</a><a href="cmd_changes">fossil changes</a>
Report on the edit status of all files in the current checkout.
See also the "status" and "extra" commands.
<a name="checkout">Usage:</a><a href="checkout">fossil checkout</a> VERSION ?-f|--force?
Check out a version specified on the command-line. This command
will not overwrite edited files in the current checkout unless
the --force option appears on the command-line.
See also the "update" command.
<a name="commit">Usage:</a><a href="cmd_commit.wiki">fossil commit</a> ?-m COMMENT? ?--nosign? ?FILE...?
fossil ci ... (as above)
Create a new version containing all of the changes in the current
checkout. You will be prompted to enter a check-in comment unless
the "-m" option is used to specify a comment line. You will be
prompted for your GPG passphrase in order to sign the new manifest
unless the "--nosign" options is used. All files that have
changed will be committed unless some subset of files is specified
on the command line.
<a name="clean">Usage:</a><a href="cmd_clean.wiki">fossil clean</a> ?-all?
Delete all "extra" files in the source tree. "Extra" files are
files that are not officially part of the checkout. See also
the "extra" command. This operation cannot be undone.
You will be prompted before removing each file. If you are
sure you wish to remove all "extra" files you can specify the
optional -all flag.
<a name="clone">Usage:</a><a href="cmd_clone.wiki">fossil clone</a> URL FILENAME
Make a clone of a repository specified by URL in the local
file named FILENAME.
<a name="close">Usage:</a><a href="cmd_close.wiki">fossil close</a> ?-f|--force?
The opposite of "open". Close the current database connection.
Require a -f or --force flag if there are unsaved changed in the
current check-out.
<a name="configure">Usage:</a><a href="cmd_configure.wiki">fossil configure</a> METHOD ...
Where METHOD is one of: export import merge pull push reset. All methods
accept the -R or --repository option to specific a repository.
fossil configuration export AREA FILENAME
Write to FILENAME exported configuraton information for AREA.
|
| ︙ | ︙ | |||
238 239 240 241 242 243 244 |
WARNING: Do not import, merge, or pull configurations from an untrusted
source. The inbound configuration is not checked for safety and can
introduce security vulnerabilities.
COMMAND: deconstruct
| | | | | | 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 |
WARNING: Do not import, merge, or pull configurations from an untrusted
source. The inbound configuration is not checked for safety and can
introduce security vulnerabilities.
COMMAND: deconstruct
<a name="deconstruct">Usage:</a><a href="cmd_deconstruct.wiki">fossil deconstruct</a> ?-R|--repository REPOSITORY? DESTINATION
Populates the indicated DESTINATION directory with copies of all
artifcats contained within the repository. Artifacts are named AA/bbbbb
where AA is the first 2 characters of the artifact ID and bbbbb is the
remaining 38 characters.
<a name="rm">Usage:</a><a href="cmd_rm.wiki">fossil rm</a> FILE...
or: fossil del FILE...
Remove one or more files from the tree.
<a name="descendants">Usage:</a><a href="cmd_descendants.wiki">fossil descendants</a> ?BASELINE-ID?
Find all leaf descendants of the baseline specified or if the argument
is omitted, of the baseline currently checked out.
<a name="diff">Usage:</a><a href="cmd_diff.wiki">fossil diff</a>|gdiff ?-i? ?-r REVISION? FILE...
Show the difference between the current version of a file (as it
exists on disk) and that same file as it was checked out.
diff will show a textual diff while gdiff will attempt to run a
graphical diff command that you have setup. If the choosen command
is not yet configured, the internal textual diff command will be
|
| ︙ | ︙ | |||
282 283 284 285 286 287 288 |
fossil setting gdiff-command eskill22
fossil setting gdiff-command tortoisemerge
fossil setting gdiff-command meld
fossil setting gdiff-command xxdiff
fossil setting gdiff-command kdiff3
| | | | | | | | | | | | | | | | | | | | 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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
fossil setting gdiff-command eskill22
fossil setting gdiff-command tortoisemerge
fossil setting gdiff-command meld
fossil setting gdiff-command xxdiff
fossil setting gdiff-command kdiff3
<a name="extra">Usage:</a><a href="cmd_extra.wiki">fossil extra</a>
Print a list of all files in the source tree that are not part of
the current checkout. See also the "clean" command.
<a name="help">Usage:</a><a href="cmd_help.wiki">fossil help</a> COMMAND
Display information on how to use COMMAND
<a name="http">Usage:</a><a href="cmd_http.wiki">fossil http</a> REPOSITORY
Handle a single HTTP request appearing on stdin. The resulting webpage
is delivered on stdout. This method is used to launch an HTTP request
handler from inetd, for example. The argument is the name of the
repository.
<a name="info">Usage:</a><a href="cmd_info.wiki">fossil info</a> ?ARTIFACT-ID|FILENAME?
With no arguments, provide information about the current tree.
If an argument is specified, provide information about the object
in the respository of the current tree that the argument refers
to. Or if the argument is the name of a repository, show
information about that repository.
<a name="leaves">Usage:</a><a href="cmd_leaves.wiki">fossil leaves</a>
Find leaves of all branches.
<a name="ls">Usage:</a><a href="cmd_ls.wiki">fossil ls</a>
Show the names of all files in the current checkout
<a name="merge">Usage:</a><a href="cmd_merge.wiki">fossil merge</a> VERSION
The argument is a version that should be merged into the current
checkout.
Only file content is merged. The result continues to use the
file and directory names from the current check-out even if those
names might have been changed in the branch being merged in.
<a name="mv">Usage:</a><a href="cmd_mv.wiki">fossil mv|rename</a> OLDNAME NEWNAME
or: fossil mv|rename OLDNAME... DIR
Move or rename one or more files within the tree
This command does not rename the files on disk. All this command does is
record the fact that filenames have changed so that appropriate notations
can be made at the next commit/checkin.
<a name="new">Usage:</a><a href="cmd_new.wiki">fossil new</a> FILENAME
Create a repository for a new project in the file named FILENAME.
This command is distinct from "clone". The "clone" command makes
a copy of an existing project. This command starts a new project.
<a name="open">Usage:</a><a href="cmd_open.wiki">fossil open</a> FILENAME
Open a connection to the local repository in FILENAME. A checkout
for the repository is created with its root at the working directory.
See also the "close" command.
<a name="pull">Usage:</a><a href="cmd_pull.wiki">fossil pull</a> ?URL? ?-R|--respository REPOSITORY?
Pull changes in a remote repository into the local repository.
The repository is identified by the -R or --repository option.
If there is no such option then the open repository is used.
The URL of the remote server is specified on the command line
If no URL is specified then the URL used by the most recent
"pull", "push", or "sync" command is used.
The URL is of the following form:
http://USER@HOST:PORT/PATH
The "USER@" and ":PORT" substrings are optional.
The "USER" substring specifies the login user. You will be
prompted for the password on the command-line. The PORT
specifies the TCP port of the server. The default port is
80.
<a name="push">Usage:</a><a href="cmd_push.wiki">fossil push</a> ?URL? ?-R|--repository REPOSITORY?
Push changes in the local repository over into a remote repository.
See the "pull" command for additional information.
<a name="rebuild">Usage:</a><a href="cmd_rebuild.wiki">fossil rebuild</a> REPOSITORY
Reconstruct the named repository database from the core
records. Run this command after updating the fossil
executable in a way that changes the database schema.
COMMAND: reconstruct
<a name="reconstruct">Usage:</a><a href="cmd_reconstruct.wiki">fossil reconstruct</a> REPOSITORY ORIGIN
Creates the REPOSITORY and populates it with the artifacts in the
indicated ORIGIN directory.
<a name="redo">Usage:</a><a href="cmd_redo.wiki">fossil redo</a> ?FILENAME...?
Redo the an update or merge operation that has been undone by the
undo command. If FILENAME is specified then restore the changes
associated with the named file(s) but otherwise leave the update
or merge undone.
A single level of undo/redo is supported. The undo/redo stack
is cleared by the commit and checkout commands.
<a name="revert">Usage:</a><a href="cmd_revert.wiki">fossil revert</a> ?--yes? ?-r REVISION? FILE
Revert to the current repository version of FILE, or to
the version associated with baseline REVISION if the -r flag
appears. This command will confirm your operation unless the
file is missing or the --yes option is used.
<a name="server">Usage:</a><a href="cmd_server.wiki">fossil server</a> ?-P|--port TCPPORT? ?REPOSITORY?
Or: fossil ui ?-P|--port TCPPORT? ?REPOSITORY?
Open a socket and begin listening and responding to HTTP requests on
TCP port 8080, or on any other TCP port defined by the -P or
--port option. The optional argument is the name of the repository.
The repository argument may be omitted if the working directory is
within an open checkout.
The "ui" command automatically starts a web browser after initializing
the web server.
COMMAND: settings
COMMAND: unset
<a name="setting">Usage:</a><a href="cmd_setting.wiki">fossil setting</a> ?PROPERTY? ?VALUE? ?-global?
fossil unset PROPERTY ?-global?
The "setting" command with no arguments lists all properties and their
values. With just a property name it shows the value of that property.
With a value argument it changes the property for the current repository.
The "unset" command clears a property setting.
|
| ︙ | ︙ | |||
470 471 472 473 474 475 476 |
web-browser A shell command used to launch your preferred
web browser when given a URL as an argument.
Defaults to "start" on windows, "open" on Mac,
and "firefox" on Unix.
| | | | | 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
web-browser A shell command used to launch your preferred
web browser when given a URL as an argument.
Defaults to "start" on windows, "open" on Mac,
and "firefox" on Unix.
<a name="status">Usage:</a><a href="cmd_status.wiki">fossil status</a>
Report on the status of the current checkout.
<a name="sync">Usage:</a><a href="cmd_sync.wiki">fossil sync</a> ?URL? ?-R|--repository REPOSITORY?
Synchronize the local repository with a remote repository. This is
the equivalent of running both "push" and "pull" at the same time.
See the "pull" command for additional information.
<a name="tag">Usage:</a><a href="cmd_tag.wiki">fossil tag</a> SUBCOMMAND ...
Run various subcommands to control tags and properties
fossil tag add ?--raw? TAGNAME BASELINE ?VALUE?
Add a new tag or property to BASELINE. The tag will
be usable instead of a BASELINE in commands such as
|
| ︙ | ︙ | |||
539 540 541 542 543 544 545 |
probably complain that no such revision was found. However
fossil update tag:decaf
will assume that "decaf" is a tag/branch name.
| | | | | | 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 |
probably complain that no such revision was found. However
fossil update tag:decaf
will assume that "decaf" is a tag/branch name.
<a name="timeline">Usage:</a><a href="cmd_timeline.wiki">fossil timeline</a> ?WHEN? ?BASELINE|DATETIME? ?-n|--count N?
Print a summary of activity going backwards in date and time
specified or from the current date and time if no arguments
are given. Show as many as N (default 20) check-ins. The
WHEN argument can be any unique abbreviation of one of these
keywords:
before
after
descendants | children
ancestors | parents
The BASELINE can be any unique prefix of 4 characters or more.
The DATETIME should be in the ISO8601 format. For
examples: "2007-08-18 07:21:21". You can also say "current"
for the current version or "now" for the current time.
<a name="undo">Usage:</a><a href="cmd_undo.wiki">fossil undo</a> ?FILENAME...?
Undo the most recent update or merge operation. If FILENAME is
specified then restore the content of the named file(s) but otherwise
leave the update or merge in effect.
A single level of undo/redo is supported. The undo/redo stack
is cleared by the commit and checkout commands.
<a name="update">Usage:</a><a href="cmd_update.wiki">fossil update</a> ?VERSION? ?--latest?
The optional argument is a version that should become the current
version. If the argument is omitted, then use the leaf of the
tree that begins with the current version, if there is only a
single leaf. If there are a multiple leaves, the latest is used
if the --latest flag is present.
This command is different from the "checkout" in that edits are
not overwritten. Edits are merged into the new version.
<a name="user">Usage:</a><a href="cmd_user.wiki">fossil user</a> SUBCOMMAND ... ?-R|--repository FILE?
Run various subcommands on users of the open repository or of
the repository identified by the -R or --repository option.
fossil user capabilities USERNAME ?STRING?
Query or set the capabilities for user USERNAME
|
| ︙ | ︙ | |||
609 610 611 612 613 614 615 |
to exist in the database.
fossil user password USERNAME
Change the web access password for a user.
| | | | 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
to exist in the database.
fossil user password USERNAME
Change the web access password for a user.
<a name="version">Usage:</a><a href="cmd_version.wiki">fossil version</a>
Print the source code version number for the fossil executable.
<a name="wiki">Usage:</a><a href="cmd_wiki.wiki">fossil wiki</a> (export|create|commit|list) WikiName
Run various subcommands to fetch wiki entries.
fossil wiki export PAGENAME ?FILE?
Sends the latest version of the PAGENAME wiki
entry to the given file or standard output.
|
| ︙ | ︙ |