day01

今天学到什么

1.git的配置

1.1`ssh的配置
ssh-keygen-t rsa -C [email protected]
01.png

02.png

03.png

id-rsa.pub的内容复制到钥匙里面

1.2git的三个区
三个区.png
git add .//添加到暂存区
git commit -m"xx"//添加到版本库
git push//推送到远程

2.vscode的环境安装

2.1插件安装
Open in browser
2.2快捷的配置

将以下内容按后面的步骤粘贴进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" }
]
05.png

06.png

07.png

3.git的命令

08.png

09.png

你可能感兴趣的:(day01)