State that -s and --ignore are remembered for next runs of Grive in --help

syncer-move-dates
Vitaliy Filippov 2015-12-12 17:22:17 +03:00
parent 9c43ad9cc9
commit c0fadcffe3
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Grive2 0.4.2-dev
10 Oct 2015, Vitaliy Filippov
12 Dec 2015, Vitaliy Filippov
http://yourcmc.ru/wiki/Grive2

View File

@ -109,8 +109,8 @@ int Main( int argc, char **argv )
( "help,h", "Produce help message" )
( "version,v", "Display Grive version" )
( "auth,a", "Request authorization token" )
( "path,p", po::value<std::string>(), "Path to sync")
( "dir,s", po::value<std::string>(), "Subdirectory to sync")
( "path,p", po::value<std::string>(), "Root directory to sync")
( "dir,s", po::value<std::string>(), "Single subdirectory to sync (remembered for next runs)")
( "verbose,V", "Verbose mode. Enable more messages than normal.")
( "log-http", po::value<std::string>(), "Log all HTTP responses in this file for debugging.")
( "new-rev", "Create new revisions in server for updated files.")
@ -120,7 +120,7 @@ int Main( int argc, char **argv )
"instead of uploading it." )
( "dry-run", "Only detect which files need to be uploaded/downloaded, "
"without actually performing them." )
( "ignore", po::value<std::string>(), "Ignore files relative paths of which match this Perl RegExp." )
( "ignore", po::value<std::string>(), "Perl RegExp to ignore files (matched against relative paths, remembered for next runs)." )
( "move,m", po::value<std::vector<std::string> >()->multitoken(), "Syncs, then moves a file (first argument) to new location (second argument) without reuploading or redownloading." )
;