码迷,mamicode.com
首页 > 其他好文 > 详细

git 使用

时间:2015-05-26 00:06:29      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

git的出现源于linus对linux源代码的管理,因此可靠性应该是没有问题。与SVN 相比,git在速度上完全胜出。

本文件简单介绍git的使用

一、安装

git的windows版本,msysgit

进行两项配置

git config --global user.name "your name"

git config --global user.email "your email"

二、创建一个版本库

创建一个版本库,新建一个目录(即工作目录),右键选在init git here,之后会生成.git文件在当前文件夹下。

新建test.txt文件,内容为hello world!

在git shell当中敲入

git status

会发现test.txt已经被修改?????

git add test.txt

git status

git commit -m "add one file"

git status

三、回退版本

git checkout HEAD^ ???

四、使用github

五、使用分支

git 使用

标签:

原文地址:http://www.cnblogs.com/lightblueme/p/4529319.html

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