今天学到了什么
1. GIT的配置
三个区.png
git add . //添加到暂存区
git commit -m"xxx" //添加到版本库
git push //推送到远程
git clone xxx
git reset --hard XXXXX
git pull //可以将远程仓库里的程序保存到本地
2. SSH
ssh-keygen -t rsa -C 395775347@qq.com
1.png
2.png
3.png
git config --list --global
3.vscode的环境配置
Open in browser
将以下内容按后面的步骤粘贴进keybindings.json
[
{ "key": "alt+/", "command": "editor.action.triggerSuggest","when": "editorTextFocus" },
{ "key": "ctrl+d", "command": "editor.action.deleteLines","when": "editorTextFocus" },
{ "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
{ "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
{ "key": "shift+enter", "command": "editor.action.insertLineAfter", "when": "editorTextFocus && !editorReadonly" } ,
{"key":"ctrl+w","command": "extension.openInBrowser" , "when": "editorTextFocus" }
]
4.png
5.png
6.png
网友评论