day1(git+vscode)
2018-07-09 本文已影响0人
很普通的人
软件安装
1.安装GIT

-
安装成功

1.2 安装TortoiseGit
1.用于显示文件的状态
2.用邮箱注册
注册码云建项目
-
创建项目test
git的配置
2.1 https的配置
-
1 复制地址

-
2 打开磁盘 如:D盘

-
3 复制项目到本地
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的配置
-
配置公钥
2.png


-
将id-rsa.pub的内容复制到钥匙里面
-
其他如https
2.3 https和ssh的区别
-######https上传要密码,ssh可以免密
2.4 git的三个区及项目上传

git add . //添加到暂存区
git commit -m"xx" //添加到版本库xx为注释
git push //推送到远程
vscode的环境配置
-
3.1插件安装
Open in browser
-
3.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" }
]



问题
1 本地文件删了,云端上没删,本地重建不能上传
git add . git commit -m"css" git push 本地云端全删了
2云端删了,本地没删
先备份本地文件
再git pull 让本地与云端同步
如果本地删了,想从云端搞下来,你就直接克隆吧