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
.help("path at which to create the local repo. Defaults to '.'"))
29
+
.arg(Arg::with_name("repo_url")
30
+
.short("r")
31
+
.takes_value(true)
32
+
.multiple(true)
33
+
.help("the remote git repo url"))
34
+
}
35
+
36
+
// gg clone -r url1 -r url2 -l local_root_path
37
+
// In addition to arguments passed, also check conf file. If 2 entries conflict from file and passed entry, use the passed entry to resolve the conflict.
38
+
// Arguments can have only one local path at which to clone. If user wishes multiple paths, they have to use a config file.
39
+
// Todo: test conflicting entries from arguments and file.
0 commit comments