标签:
git clone $address //示例 git clone https://git.coding.net/wangkuan/gitdemo.git
git status
git add $file //示例 git add index.html git add js/*.js
git commit -m $msg //示例 git commit -m 添加了index.html文件
git log
git reset --hard $commitID //示例 git reset --hard 993d9baa9d324336ff3468216341bf34ef898532
git fetch
git pull
git push
标签:
原文地址:http://www.cnblogs.com/wangkuan/p/5209264.html