-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Git clone from file explorer when no workspace #8667
Comments
We should support the |
Some additional information regarding contributing welcome content. The clone repository welcome content is actually contributed through the builtin git extension and once the API is supported we can benefit from it's functionality. |
Is it contained in #7178? |
I believe so yes :) |
@amiramw registry.registerCommand(GIT_COMMANDS.CLONE, {
isEnabled: () => this.workspaceService.opened,
execute: (url?: string, folder?: string, branch?: string) =>
this.quickOpenService.clone(url, folder, branch)
}); So supporting view-welcome for explorer will display the "clone repository" button disabled |
@EstherPerelman the |
@vince-fugnitto But in order to clone a repository in the explorer view we use the git.clone command |
It is also implemented in the git builtin extension. I'm not sure the lastest versions work in theia. |
@EstherPerelman the The builtin defines it's own |
After support to welcome views and adoption of builtin git this feature works. Closing. |
Feature Description:
Similar to vs code I would like to git clone a repo before opening any workspace.
Vscode:
![image](https://user-images.githubusercontent.com/9420921/97177128-abd3fb00-179e-11eb-9f28-dc9b7fc71697.png)
The text was updated successfully, but these errors were encountered: