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 protected]"
接着,看看git的基本使用吧....
时间: 2024-11-05 16:03:51