git是一个版本管理系统,利用好它,可以管理你项目文件,每个文件的更新删除修改,它都知道,还可以还原回历史的某个版本。

msysgit是Windows版的Git。

1.下载地址:https://git-for-windows.github.io/ ,按默认选项安装即可。

 

2.安装完就可以顺便使用git bash了,比cmd好用

因为Git是分布式版本控制系统,每个机器都必须自报家门,所以需要配置下git报上你的信息:

$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"

 

接着,看看git的基本使用吧....

相关文章:

  • 2022-12-23
  • 2022-02-01
  • 2021-05-29
  • 2022-12-23
  • 2022-12-23
  • 2021-07-24
  • 2021-05-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2021-12-06
  • 2021-11-06
相关资源
相似解决方案