You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
" - use URL, username, password from command line args - e.g. --url https://dev.mergin.io/ --user martin --password XYZ\n"\
62
+
" - for any bits (URL / username / password) not specified as command line args, you may use env variables: MERGIN_URL, MERGIN_USER, MERGIN_PASSWORD\n"\
63
+
" - if URL is omitted, we would use public.cloudmergin.com\n"\
64
+
"\n"\
65
+
"Commands\n"\
66
+
"--------\n"\
67
+
" 1. manage remote projects (create / remote)\n"\
68
+
" mergin create martin/test-project\n"\
69
+
" mergin remove martin/test-project\n"\
70
+
"\n"\
71
+
" 2. initial download\n"\
72
+
" mergin download martin/test-project\n"\
73
+
" - project is downloaded to current dir + 'test-project' subdir - like git does\n"\
74
+
" 3. operations within the current working directory (error if .mergin subdir is missing in the current dir)\n"\
75
+
" mergin sync\n"\
76
+
" - both pulls remote changes and pushes local changes to server\n"\
77
+
" mergin info [--json]\n"\
78
+
" - shows project information";
79
+
return ret;
80
+
}
81
+
53
82
Args parseArgs()
54
83
{
55
84
Args args;
56
85
QCommandLineParser parser;
57
-
parser.setApplicationDescription( "Mergin Command Line Client" );
0 commit comments