Blogger Information
Blog 77
fans 0
comment 0
visits 54996
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
vscode、Git仓库的使用
Jet的博客
Original
504 people have browsed it

一、使用Egde浏览器,并且已安装vscode和相关插件

二、Git仓库

1、首先注册一个账号,新建一个仓库

注册地址:https://gitee.com/

2、本地仓库

  1. # 初始化,将目录(项目)->git可管理的项目
  2. git init
  3. # 提交到暂存区/索引区
  4. git add .
  5. # 提交到本地的版本库/仓库中
  6. git commit -m 'first commit'

3、远程仓库

  1. # 自我介绍
  2. git config --global user.name "Jet"
  3. git config --global user.email "149964986@qq.com"
  4. # 设置远程仓库地址
  5. git remote add origin https://gitee.com/badjet/22.git
  6. # 仓库的自我介绍:将本地与远程仓库进行关联
  7. git push --set-upstream origin master
  8. # 以后,只要用以下指令直接提交
  9. git push

4、提交远程保存出现的问题:

  1. git push提交会出现 Everything up-to-date
  2. # 实际是因为没有提交到索引区 和 本地仓库,只需要再次使用:
  3. git add.
  4. git commit -m 'xxx'
  5. git push
  6. # 即可

个人小结:

1、之前一直使用subime,工作上只是简单修改前端代码足够用了,没想到vscode这么方便快捷,有各种插件提高效率;

2、git仓库可以远程端保存共享代码等文件,nas等也能达到这个效果,不过nas也仅限于个人或者关系好的使用,毕竟分享出去后怕不安全;不过还是建议大家多加强密码强度。

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post