标签:
创建一个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"
标签:
原文地址:http://www.cnblogs.com/elewei/p/5954792.html