Differences From Artifact [c8b27a46c0]:
- File
src/file.c
— part of check-in
[856ca01b13]
at
2016-12-21 17:50:04
on branch gdiff-tmpfilename-prefix
— When calling gdiff (or stash gdiff) command between 2 versions, use the
filename to prefix the temporary random filename so once inside the external
diff program we know what file is being compared.
(pending-review) (user: mgagnon size: 38348) [more...]
To Artifact [acda6dd5cb]:
- File src/file.c — part of check-in [85277aa3b3] at 2017-02-01 02:16:14 on branch noSymlinks — Add the --no-symlinks global command line option. (user: mistachkin size: 38471)
| ︙ | ︙ | |||
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 |
**
** Test the operation of the tree name generator.
**
** Options:
** --absolute Return an absolute path instead of a relative one.
** --case-sensitive B Enable or disable case-sensitive filenames. B is
** a boolean: "yes", "no", "true", "false", etc.
*/
void cmd_test_tree_name(void){
int i;
Blob x;
int absoluteFlag = find_option("absolute",0,0)!=0;
db_find_and_open_repository(0,0);
blob_zero(&x);
| > > | 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 |
**
** Test the operation of the tree name generator.
**
** Options:
** --absolute Return an absolute path instead of a relative one.
** --case-sensitive B Enable or disable case-sensitive filenames. B is
** a boolean: "yes", "no", "true", "false", etc.
** --no-symlinks Disables support for symlinks, overriding
** the "allow-symlinks" option.
*/
void cmd_test_tree_name(void){
int i;
Blob x;
int absoluteFlag = find_option("absolute",0,0)!=0;
db_find_and_open_repository(0,0);
blob_zero(&x);
|
| ︙ | ︙ |