• 前置条件
  • 配置命令
  • 一些常用指令

一、前置条件

  1. 安装了VScode,并且配配置了环境变量
  2. 安装了git环境

二、配置指令

  1. git config --global user.name 你的英文名
  2. git config --global user.email 你的邮箱
  3. git config --global push.default simple
  4. git config --global core.quotepath false
  5. git config --global core.editor "code --wait"
  6. git config --global core.autocrlf input

如:

  1. git config --global user.name Layouwen
  2. git config --global user.email Layouwen@gmail.com
  3. git config --global push.default simple
  4. git config --global core.quotepath false
  5. git config --global core.editor "code --wait"
  6. git config --global core.autocrlf input

以上六条命令运行后,输入 git config --global --list 查看配置有没有输错。
VScode的Git本地仓库的配置 - 图1

配置好后,就可以使用git的指令了

三、常用指令

  1. // 初始化创建一个.git目录
  2. git inte
  3. // 添加需要备份的文件
  4. git add .
  5. // 开始备份
  6. git commit -m "备注"
  7. // 查看备份记录
  8. git log
  9. // 回滚之前版本
  10. git reset --hard 版本号