81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
-
+
-
-
+
+
+
+
-
+
-
+
-
+
|
/*
** COMMAND: clone
**
** Usage: %fossil clone ?OPTIONS? URI FILENAME
**
** Make a clone of a repository specified by URI in the local
** file named FILENAME.
** file named FILENAME. URI may be one of the following forms:
**
** URI may be one of the following forms:
** ([...] denotes optional elements):
**
** * HTTP/HTTPS protocol:
**
** http[s]://[userid[:password]@]host[:port][/path]
**
** * SSH protocol:
**
** ssh://[userid@]host[:port]/path/to/repo.fossil[?fossil=path/fossil.exe]
**
** * Filesystem:
**
** [file://]path/to/repo.fossil
**
** Note that in Fossil (in contrast to some other DVCSes) a repository
** is distinct from a checkout. This command create a clone of a repository.
** Use the separate [[open]] command to open a checkout from that repository.
**
** Note 1: For ssh and filesystem, path must have an extra leading
** For ssh and filesystem, path must have an extra leading
** '/' to use an absolute path.
**
** Note 2: Use %HH escapes for special characters in the userid and
** Use %HH escapes for special characters in the userid and
** password. For example "%40" in place of "@", "%2f" in place
** of "/", and "%3a" in place of ":".
**
** By default, your current login name is used to create the default
** By default, the current login name is used to create the default
** admin user. This can be overridden using the -A|--admin-user
** parameter.
**
** Options:
** --admin-user|-A USERNAME Make USERNAME the administrator
** --httpauth|-B USER:PASS Add HTTP Basic Authorization to requests
** --nocompress Omit extra delta compression
|