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

创建一个git

时间:2016-10-13 02:35:45      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:

创建一个Git

第一步:下载最新的git包

https://git-scm.com/downloads

 

 

第二步:配置你的名字

$git config --global user.name "YOUR NAME"

 

第三步:配置你的邮箱

$git config --global user.eamil "YOUR EMAIL

 

使你的工作保持同步

第一步:克隆一个仓库

$git clone https://github.com/Elewei/Spoon-Knife.git

 

 

第二步:进入目录

$git remote -v

 

 

 初始化一个项目

$git init

 

 

查看当前状态

$git status

 

 

将文件放入缓存区

$git add hello.txt

 

 

将文件提交

$git commit -m "my first commit"

 

创建一个git

标签:

原文地址:http://www.cnblogs.com/elewei/p/5954792.html

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