day1(git+vscode)

2018-07-09  本文已影响0人  很普通的人

软件安装

1.安装GIT

软件.png 成功.png

1.2 安装TortoiseGit

1.用于显示文件的状态
2.用邮箱注册

注册码云建项目

git的配置

2.1 https的配置

https.png 1.png
student@STUDENT-PC020 MINGW32 /d
$ git clone https://gitee.com/dingmeili/test.git     <--复制命令-->
fatal: destination path 'test' already exists and is not an empty directory.

2.2 ssh的配置

3.png 4f.png

2.3 https和ssh的区别

-######https上传要密码,ssh可以免密

2.4 git的三个区及项目上传

5.png
git add . //添加到暂存区
git commit -m"xx" //添加到版本库xx为注释
git push //推送到远程

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" }
]

6f.png 7.png 8.png

问题

1 本地文件删了,云端上没删,本地重建不能上传
git add . git commit -m"css" git push 本地云端全删了
2云端删了,本地没删
先备份本地文件
再git pull  让本地与云端同步

如果本地删了,想从云端搞下来,你就直接克隆吧

上一篇 下一篇

猜你喜欢

热点阅读