今天学到什么
1.git
的配置
1.1ssh
的配置
ssh-keygen -t rsa -C jj738262446@qq.com
将
id_rsa.pub
里的内容复制到图2的公钥里。
1.2git
的三个区
git add . //添加到暂存区
git commit -m"xx" //添加到版本库
git push //推送到远程
1.3git
的一些命令
git log //查看日志
git status //查看状态
git reset --hard //回退(前)
git reflog //回退(后)
git clone //克隆远程仓库到本地
git pull //拿仓库的东西
2.vscode
的环境配置
2.1插件安装
open in browser
2.2快捷的配置
将以下代码替换到步骤3的红圈处。
[
{ "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" }
]