# HG changeset patch # User Olaf Wintermann # Date 1575620685 -3600 # Node ID 8ca795c1ae1ccd9f79a802a376ebaa80d4a20306 # Parent 56b66fe2b4f55b6cff3f6fe177c3a99fbbeb3196 add -s option to dav-sync usage output diff -r 56b66fe2b4f5 -r 8ca795c1ae1c dav/sync.c --- a/dav/sync.c Thu Dec 05 12:37:48 2019 +0100 +++ b/dav/sync.c Fri Dec 06 09:24:45 2019 +0100 @@ -288,18 +288,19 @@ fprintf(stderr, " list-tags [-s ] \n\n"); fprintf(stderr, "Options:\n"); - fprintf(stderr, " -c Disable conflict detection\n"); - fprintf(stderr, " -l Lock the repository before access\n"); - fprintf(stderr, " -d Don't lock the repository\n"); - fprintf(stderr, " -t " + fprintf(stderr, " -c Disable conflict detection\n"); + fprintf(stderr, " -l Lock the repository before access\n"); + fprintf(stderr, " -d Don't lock the repository\n"); + fprintf(stderr, " -t " "Only sync files which have the specified tags\n"); - fprintf(stderr, " -r " + fprintf(stderr, " -r " "Remove resources not matching the tag filter\n"); - fprintf(stderr, " -V Restore specific version\n"); - fprintf(stderr, " -S Save previous file version\n"); - fprintf(stderr, " -R Restore removed files\n"); - fprintf(stderr, " -M Restore modified files\n"); - fprintf(stderr, " -v Verbose output (all commands)\n\n"); + fprintf(stderr, " -V Restore specific version\n"); + fprintf(stderr, " -S Save previous file version\n"); + fprintf(stderr, " -R Restore removed files\n"); + fprintf(stderr, " -M Restore modified files\n"); + fprintf(stderr, " -s Name of the syncdir the file is in\n"); + fprintf(stderr, " -v Verbose output (all commands)\n\n"); fprintf(stderr, "Config commands:\n"); fprintf(stderr, " add-directory\n"); diff -r 56b66fe2b4f5 -r 8ca795c1ae1c dav/version.h --- a/dav/version.h Thu Dec 05 12:37:48 2019 +0100 +++ b/dav/version.h Fri Dec 06 09:24:45 2019 +0100 @@ -27,6 +27,6 @@ */ #ifndef DAV_VERSION -#define DAV_VERSION "1.3 beta2" +#define DAV_VERSION "1.3 RC1" #endif