Blogger Information
Blog 6
fans 0
comment 0
visits 3250
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
vscode编辑器插件推荐和GIt代码推送基本操作
远方
Original
746 people have browsed it

内容简介①vscode编辑器插件推荐,②GIt代码推送基本操作

Vscode

编辑器下载

vscode官方链接

插件推荐

  • 中文汉化插件 Chinese(Simplified)

附图1

  • MarkDown 预览: Markdown Preview Enhanced

附图2

  • Markdown 转 PDF: Markdown PDF

附图3

  • 图片预览: Image preview

附图4

  • 实时预览: Live Server

附图5

  • 代码截图神器: CodeSnap

附图6

  • 查看 PDF: vscode-pdf

附图7

  • 标签自动闭合: Auto Close Tag

附图8

  • 项目管理器: Project Manager

附图9

  • 智能提示增强: HTML CSS Support

附图10

Git

Git下载

Git官方链接

Git推送基本操作

  1. ## 本地仓库
  2. # 项目初始化, 将目录(项目)->git可管理的项目
  3. git init
  4. # 提交到暂存区/索引区
  5. git add .
  6. # 提交到本地的版本库/仓库中
  7. git commit -m 'Submit comments'
  8. ## 远程仓库
  9. #配置推送远程仓库账户[仅首次代码推送需配置]
  10. git config --global user.name "username"
  11. git config --global user.email "user@email.com"
  12. # 设置远程仓库的地址[仅首次代码推送需配置]
  13. git remote add origin https://gitee.com/code/num.git
  14. git remote add origin https://toscode.gitee.com/mulu/itemname.git
  15. # 仓库自我介绍: 将本地与远程仓库进行关联
  16. git push --set-upstream origin master
  17. git push -u origin "master"
  18. # 此后, 仅需用以下指令直接提交即可
  19. git push
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!