码迷,mamicode.com
首页 > Windows程序 > 详细

在Windows上安装Git

时间:2015-12-04 14:39:26      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

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的基本使用吧....

在Windows上安装Git

标签:

原文地址:http://www.cnblogs.com/tinyphp/p/5018732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!