您好,登錄后才能下訂單哦!
本篇內容主要講解“VSCode的使用技巧有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“VSCode的使用技巧有哪些”吧!
步驟1. 執行Ctrl+Shift+P
步驟2. 搜 showlogs
步驟1. 執行Ctrl+Shift+P
步驟2. 搜Open Settings(JSON)
在VSCode的配置文件settings.json中添加如下參數
"remote.SSH.showLoginTerminal": true,
在VSCode的配置文件settings.json中添加如下參數
"workbench.colorTheme": "Atom One Light", "workbench.colorCustomizations": { "[Atom One Light]": { "editor.background": "#C7EDCC", "sideBar.background": "#e7f0e7", "activityBar.background": "#C7EDCC", }, },
在VSCode的配置文件settings.json中添加remote.SSH.defaultExtensions參數,如自動安裝Python和Maven插件,可配置如下。
"remote.SSH.defaultExtensions": [ "ms-python.python", "vscjava.vscode-maven" ],
步驟1. 執行Ctrl+Shift+P
步驟2. 搜install local,按需選擇即可
步驟1. 安裝OpenSSH
步驟2. 以管理員身份啟動 PowerShell,并按需執行下述命令:
啟動SSHD服務:
Get-WindowsCapability -Online | ? Name -like 'OpenSSH*' Start-Service sshd Set-Service -Name sshd -StartupType 'Automatic' Get-NetFirewallRule -Name sshNew-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
允許Windows自動運行SSH Agent:
Set-Service ssh-agent -StartupType Automatic Start-Service ssh-agent Get-Service ssh-agent
將私鑰對添加到正在運行的agent中:
ssh-add.exe .\id_rsa #路徑為待添加私鑰的位置 ssh-add.exe -L
步驟3. 編輯本地的sshconfig(如~\.ssh\config)文件,增加配置ForwardAgentyes,如下所示。
Host my_host HostName x.x.x.x Port x User x IdentityFile xx ForwardAgent yes
若對所有Host默認統一增加配置ForwardAgentyes,可增加配置如下:
Host * ForwardAgent yes
簡要Git操作指導視頻可參考VSCode視頻教程(3分54秒):
code.visualstudio.com/docs/introv…
更多Git功能使用細節可閱讀VSCode官方文檔code.visualstudio.com/docs/editor…
步驟一. 到VSCode插件官網vscode_marketplace搜索待安裝的A插件
步驟二. 點擊進入A插件詳情后,下載該插件的離線安裝包。
步驟三. 將下載好的.vsix文件拖動到遠端容器中
步驟四. 右鍵點擊該文件,選擇Install ExtensionVSIX
可以在本地的sshconfig文件中對這個容器配置參數“StrictHostKeyChecking no”和“UserKnownHostsFile=/dev/null”,如下參考所示:
Host my_host HostName x.x.x.x Port x User x IdentityFile xx ForwardAgent yes StrictHostKeyChecking no UserKnownHostsFile=/dev/null
提示:增加上述配置參數會在SSH登錄時忽略known_hosts文件,有安全風險
如果已有launch.json文件,請直接看步驟3。步驟1:打開launch.json文件。可通過以下任一方式打開:
方法一:點擊左側菜單欄的Run(Ctrl+Shift+D)按鈕,再點擊create a launch.json file。
方法二:點擊上側菜單欄中的Run > Open configurations按鈕
步驟2:選擇語言
如果需要對Python語言進行設置,在彈出的Select a debug configuration中選擇Python File,其他語言操作類似。
步驟3:編輯launch.json,增加justMyCode":false配置,如下圖所示:
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python: 當前文件", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode": false } ] }
在terminal中,執行如下述命令,再重試提交即可:
git config --global user.email my_email #改為你的用戶郵箱 git config --global user.name my_name #改為你的用戶名
步驟1. 執行Ctrl+Shift+P
步驟2. 搜Open Settings(JSON)
步驟3. 在配置文件settings.json中添加如下參數"update.mode":"manual"
步驟1. 執行Ctrl+Shift+P
步驟2. 搜Open Settings(JSON)
步驟3. 在配置文件settings.json中添加如下參數"extensions.autoUpdate":fals
到此,相信大家對“VSCode的使用技巧有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。