From e91a2b598b74a505729e96c070a6fd9cc39c967d Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Wed, 27 Jul 2016 17:21:28 +0300 Subject: [PATCH] Name it working copy, not just root (fixes #86) --- grive/doc/grive.1 | 7 ++++--- grive/src/main.cc | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/grive/doc/grive.1 b/grive/doc/grive.1 index ad9ea0d..3b0b56a 100644 --- a/grive/doc/grive.1 +++ b/grive/doc/grive.1 @@ -62,9 +62,10 @@ for debugging \fB\-\-new\-rev\fR Create new revisions in server for updated files .TP -\fB\-p\fR , \fB\-\-path\fR -Set root sync directory to -.I +\fB\-p\fR , \fB\-\-path\fR +Use +.I +as the working copy root directory .TP \fB\-s\fR , \fB\-\-dir\fR Sync a single diff --git a/grive/src/main.cc b/grive/src/main.cc index 477825f..0894545 100644 --- a/grive/src/main.cc +++ b/grive/src/main.cc @@ -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(), "Root directory to sync") + ( "path,p", po::value(), "Path to working copy root") ( "dir,s", po::value(), "Single subdirectory to sync") ( "verbose,V", "Verbose mode. Enable more messages than normal.") ( "log-http", po::value(), "Log all HTTP responses in this file for debugging.")