32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
** file named FILENAME.
**
** By default, your 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
** --private Also clone private branches
** --ssl-identity=filename Use the SSL identity if requested by the server
**
*/
void clone_cmd(void){
char *zPassword;
const char *zDefaultUser; /* Optional name of the default user */
const char *zPw; /* The user clone password */
int nErr = 0;
int bPrivate; /* Also clone private branches */
|
<
>
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
** file named FILENAME.
**
** By default, your 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
** --private Also clone private branches
** --ssl-identity=filename Use the SSL identity if requested by the server
**
** See also: init
*/
void clone_cmd(void){
char *zPassword;
const char *zDefaultUser; /* Optional name of the default user */
const char *zPw; /* The user clone password */
int nErr = 0;
int bPrivate; /* Also clone private branches */
|