Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed typo in the help message for the deconstruct command |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f7cf6dd7ba8ad2fd4909a08ba1c1b758 |
| User & Date: | aku 2010-11-13 02:17:15.000 |
Context
|
2010-11-13
| ||
| 12:48 | On a "tree checksum does not match repository" error on a commit, go back and do a file-by-file comparison of the repository and the working checkout to try to discover what the problem is. Ticket [a483f0ab3f0d4da0]. ... (check-in: 64459dd091 user: drh tags: trunk) | |
| 02:17 | Fixed typo in the help message for the deconstruct command ... (check-in: f7cf6dd7ba user: aku tags: trunk) | |
| 02:16 | Fixed typos in commit [aa2fdc286c]. ... (check-in: 8cf380a48e user: aku tags: trunk) | |
Changes
Changes to src/rebuild.c.
| ︙ | ︙ | |||
574 575 576 577 578 579 580 | } /* ** COMMAND: deconstruct ** ** Usage %fossil deconstruct ?-R|--repository REPOSITORY? ?-L|--prefixlength N? DESTINATION ** | | | 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 |
}
/*
** COMMAND: deconstruct
**
** Usage %fossil deconstruct ?-R|--repository REPOSITORY? ?-L|--prefixlength N? DESTINATION
**
** This command exports all artifacts of a given repository and
** writes all artifacts to the file system. The DESTINATION directory
** will be populated with subdirectories AA and files AA/BBBBBBBBB.., where
** AABBBBBBBBB.. is the 40 character artifact ID, AA the first 2 characters.
** If -L|--prefixlength is given, the length (default 2) of the directory
** prefix can be set to 0,1,..,9 characters.
*/
void deconstruct_cmd(void){
|
| ︙ | ︙ |