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
Create new revisions in server for updated files
.TP
\fB\-p\fR <root_path>, \fB\-\-path\fR <root_path>
Set root sync directory to
.I <root_path>
\fB\-p\fR <wc_path>, \fB\-\-path\fR <wc_path>
Use
.I <wc_path>
as the working copy root directory
.TP
\fB\-s\fR <subdir>, \fB\-\-dir\fR <subdir>
Sync a single

View File

@ -109,7 +109,7 @@ 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>(), "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")
( "verbose,V", "Verbose mode. Enable more messages than normal.")
( "log-http", po::value<std::string>(), "Log all HTTP responses in this file for debugging.")