Name it working copy, not just root (fixes #86)

pull/88/head
Vitaliy Filippov 2016-07-27 17:21:28 +03:00
parent 457d849745
commit e91a2b598b
2 changed files with 5 additions and 4 deletions

View File

@ -62,9 +62,10 @@ for debugging
\fB\-\-new\-rev\fR \fB\-\-new\-rev\fR
Create new revisions in server for updated files Create new revisions in server for updated files
.TP .TP
\fB\-p\fR <root_path>, \fB\-\-path\fR <root_path> \fB\-p\fR <wc_path>, \fB\-\-path\fR <wc_path>
Set root sync directory to Use
.I <root_path> .I <wc_path>
as the working copy root directory
.TP .TP
\fB\-s\fR <subdir>, \fB\-\-dir\fR <subdir> \fB\-s\fR <subdir>, \fB\-\-dir\fR <subdir>
Sync a single Sync a single

View File

@ -109,7 +109,7 @@ int Main( int argc, char **argv )
( "help,h", "Produce help message" ) ( "help,h", "Produce help message" )
( "version,v", "Display Grive version" ) ( "version,v", "Display Grive version" )
( "auth,a", "Request authorization token" ) ( "auth,a", "Request authorization token" )
( "path,p", po::value<std::string>(), "Root directory to sync") ( "path,p", po::value<std::string>(), "Path to working copy root")
( "dir,s", po::value<std::string>(), "Single subdirectory to sync") ( "dir,s", po::value<std::string>(), "Single subdirectory to sync")
( "verbose,V", "Verbose mode. Enable more messages than normal.") ( "verbose,V", "Verbose mode. Enable more messages than normal.")
( "log-http", po::value<std::string>(), "Log all HTTP responses in this file for debugging.") ( "log-http", po::value<std::string>(), "Log all HTTP responses in this file for debugging.")