//获取
git clone
//下载
git pull
//判断状态
git status
//添加
git add
//本地提交
git commit -m ""
//推送到服务器
git push
//创建附注标签
git tag -a v0.1.2 -m “0.1.2版本”
//将tag推送到服务器
git push origin v0.1.2
//查看当前分支
git remote -v
//强制恢复到一个版本 git reset —hard
git reset 3eae9f7e411a1c9081d3918b0da1233ae181cbfb —hard
//产看分支
git remote -v
//合并提交
git rebase -i 版本号
//切换到那个版本
git checkout -b [issue-2]分支名称
//保存分枝
git stash save
//恢复分枝
git stash pop
//产看服务器变化
gitk
合并
http://blog.csdn.net/gouboft/article/details/8450696
网友评论