DAY01

作者: 冯威武 | 来源:发表于2018-07-09 18:58 被阅读0次

    今天学到了什么

    1、git的配置
    1.1“ssh”的配置

    步骤

    //在命令行中输入以下内容,产生SSH
    ssh-keygen -t rsa -C 1257877950@qq.com
    

    然后在Gitee中进行以下操作

    01.png 02.png

    找到如下文件

    13.jpg 03.png 04.jpg

    复制id-rsa.pub的内容放到公钥中

    05.png
    2.git的概念
    06.png
    2.1 git add .  
    2.2 git commit -m"xxx"
    2.3 git push
    
    3、关于VS运行环境
    3.1 安装open in browser插件
    07.png
    安装open in browser1.1.0版本
    08.png
    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" }
    ]
    

    然后进行如下操作


    09.png
    10.png 11.png 12.png

    相关文章

      网友评论

          本文标题:DAY01

          本文链接:https://www.haomeiwen.com/subject/zwjtpftx.html