Git常用命令

https://www.jianshu.com/p/060b75e881b3

1.克隆项目

 git clone http://ip/project/xx.git

2.拉分支

##远程test分支
git fetch origin test
##远程develop分支
git fetch origin develop

3.切换分支

##切换不创建
git checkout test
##切换并创建副本
git checkout -b iss#100

4.提交修改到本地当前分支

 git add .

5.提交修改到远程master分支

git push -u origin master

6.develop分支合并到test分支

git checkout develop
git pull
git checkout test
git pull
git merge develop
git push -u origin test

7.test撤销合并develop的内容

git checkout test
git reflog
git reset --hard 82ea99a7 ##在reflog里面找的上一次的地址
git push -u origin test

8.打tag标签推送到远程

git checkout master
git pull
git tag -a v1.0.0 -m "我是版本v1.0.0"
git tag
git push origin v1.0.0

9.查询本地分支

git branch
git branch -v
git branch -vv

10.查询合并、未合并的分支

git branch --no-merged
git branch --merged

 

posted @ 2020-08-06 17:13  缘故为何  阅读(86)  评论(0编辑  收藏  举报