This file contains hidden or 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
| Host your-jumpbox | |
| HostName xxx.xxx.xxx.xxx | |
| User user1 | |
| IdentityFile ~/.ssh/private_key_for_jumpbox | |
| Host endpoint1 | |
| HostName xxx.xxx.xxx.xxx | |
| User user2 | |
| ProxyCommand ssh -q -W %h:%p your-jumpbox |
This file contains hidden or 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
| # GitHub Personal Access Token + Git Credential Manager Core (2021-08-20) | |
| # <Git Credential Manager Core> | |
| # install (Ubuntu 18.04) | |
| # https://github.com/microsoft/Git-Credential-Manager-Core | |
| curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
| sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod | |
| sudo apt-get update | |
| sudo apt-get install gcmcore |
This file contains hidden or 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
| [ | |
| { | |
| "key": "ctrl+2", | |
| "command": "editor.action.previousSelectionMatchFindAction", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+3", | |
| "command": "editor.action.nextSelectionMatchFindAction", | |
| "when": "editorFocus" |
OlderNewer