今天学到了什么
1、git的配置
1.1“ssh”的配置
步骤
//在命令行中输入以下内容,产生SSH
ssh-keygen -t rsa -C 1257877950@qq.com
然后在Gitee中进行以下操作
找到如下文件
复制id-rsa.pub
的内容放到公钥中
2.git的概念
2.1 git add .
2.2 git commit -m"xxx"
2.3 git push
3、关于VS运行环境
3.1 安装open in browser
插件
安装open in browser1.1.0
版本
3.2快捷键的设置
将下面的代码进行复制
[
{ "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" }
]
然后进行如下操作