Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Renamed the test-move-repository command to local-repo, since it's useful for more than just testing, and there's no good alternative in the main command set otherwise. It is especially useful with local-only repos, since that means use of the sync and remote-url commands isn't the correct way to change the location of the local repo. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a52c3e1256288c7d88c2fabe3220e7ee |
| User & Date: | wyoung 2019-07-08 19:14:35.150 |
References
|
2019-07-10
| ||
| 16:22 | Back out check-in [a52c3e1256288c7d]. Perhaps the "test-move-repository" command should be promoted to a supported and documented command, but I don't think "local-repo" is the correct name, and in any event, the command needs additional work before it is given first-class status. For example, typing "fossil local-repo" without the 3rd term should show the current repository, not give an error. check-in: aa3f554cff user: drh tags: trunk | |
Context
|
2019-07-10
| ||
| 16:22 | Back out check-in [a52c3e1256288c7d]. Perhaps the "test-move-repository" command should be promoted to a supported and documented command, but I don't think "local-repo" is the correct name, and in any event, the command needs additional work before it is given first-class status. For example, typing "fossil local-repo" without the 3rd term should show the current repository, not give an error. check-in: aa3f554cff user: drh tags: trunk | |
| 03:49 | Update custom MinGW makefile. check-in: 1c88ed9bec user: mistachkin tags: trunk | |
|
2019-07-08
| ||
| 19:14 | Renamed the test-move-repository command to local-repo, since it's useful for more than just testing, and there's no good alternative in the main command set otherwise. It is especially useful with local-only repos, since that means use of the sync and remote-url commands isn't the correct way to change the location of the local repo. check-in: a52c3e1256 user: wyoung tags: trunk | |
| 17:11 | Fix an apparent bug in the "fossil grep" command causing it to miss the first character of each line. check-in: 5421caa21a user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1843 1844 1845 1846 1847 1848 1849 |
g.zAuxSchema, AUX_SCHEMA_MIN, AUX_SCHEMA_MAX);
fossil_fatal("run \"fossil rebuild\" to fix this problem");
}
}
/*
| | | | 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 |
g.zAuxSchema, AUX_SCHEMA_MIN, AUX_SCHEMA_MAX);
fossil_fatal("run \"fossil rebuild\" to fix this problem");
}
}
/*
** COMMAND: local-repo
**
** Usage: %fossil local-repo PATHNAME
**
** Change the location of the repository database on a local check-out.
** Use this command to avoid having to close and reopen a checkout
** when relocating the repository database.
*/
void move_repo_cmd(void){
Blob repo;
|
| ︙ | ︙ |