-
-
Notifications
You must be signed in to change notification settings - Fork 433
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Summary 💡
clone command requires <DIRECTORY> argument, which I think it should be optional instead: [<DIRECTORY>]:
git way:
git clone [OPTIONS] <repository> [<directory>]
gix way:
gix clone [OPTIONS] <REMOTE> <DIRECTORY>
Motivation 🔦
git by default uses the project name when creating folders. Whereas gix, we have to pass manually, which makes the UX a bit slower. (since we have to copy-paste the repository name)
The following command should just work:
$ gix clone git@github.com:Byron/gitoxide.git
error: The following required arguments were not provided:
<DIRECTORY>We can easily get the <DIRECTORY> from the repository name, which is gitoxide in this case.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request