This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
forked from eclipse-che/che-theia
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clone Git projects with SSH URI (eclipse-che#995)
* Improve the UX when cloning Git projects with SSH uri Signed-off-by: Vitaliy Gulyy <[email protected]>
- Loading branch information
1 parent
2db51fc
commit 6f6bf30
Showing
10 changed files
with
587 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/********************************************************************** | ||
* Copyright (c) 2019-2021 Red Hat, Inc. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
***********************************************************************/ | ||
|
||
import * as theia from '@theia/plugin'; | ||
|
||
export const SSH_GENERATE_FOR_HOST: theia.CommandDescription = { | ||
id: 'ssh:generate_for_host', | ||
label: 'SSH: Generate Key For Particular Host...', | ||
}; | ||
|
||
export const SSH_GENERATE: theia.CommandDescription = { | ||
id: 'ssh:generate', | ||
label: 'SSH: Generate Key...', | ||
}; | ||
|
||
export const SSH_CREATE: theia.CommandDescription = { | ||
id: 'ssh:create', | ||
label: 'SSH: Create Key...', | ||
}; | ||
|
||
export const SSH_DELETE: theia.CommandDescription = { | ||
id: 'ssh:delete', | ||
label: 'SSH: Delete Key...', | ||
}; | ||
|
||
export const SSH_VIEW: theia.CommandDescription = { | ||
id: 'ssh:view', | ||
label: 'SSH: View Public Key...', | ||
}; | ||
|
||
export const SSH_UPLOAD: theia.CommandDescription = { | ||
id: 'ssh:upload', | ||
label: 'SSH: Upload Private Key...', | ||
}; | ||
|
||
export const SSH_ADD_TO_GITHUB: theia.CommandDescription = { | ||
id: 'ssh:add_key_to_github', | ||
label: 'SSH: Add Existing Key To GitHub...', | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.