GIT操作图谱

GIT操作图谱_第1张图片

一、主干分支操作步骤:
1、git clone  [email protected]:/fastdao.git

2、新增/修改 git add xxx

3、提交 git commit   -m

4、推送到远程仓库 git push

二、本地创建并提交分支步骤:

1、git bash进入本地git仓库根目录,在本地新建分支
git branch fastdao1

2、把本地分支push到远程
git push origin fastdao1
或者:git push origin fastdao1:fastdao1
删除远程分支:git push origin :fastdao1

3、切换到该分支
git checkout fastdao1

4、查看本地修改
git status

5、添加本地修改
git add .

6、commit修改
git commit -m 'xxx'

7、push代码
git push

三、本地合并分支到主干步骤:
1、git bash进入本地git仓库根目录,查看分支
git branch
git branch -a

2、切换回主分支
git checkout master

3、更新
git pull

4、合并到主分支
git merge fastdao1

5、推送至主分支
git push

四、本地拉分支打标签并远程操作步骤

1、切换到需要打标签的分支上
git branch -a
git checkout fastdao1

2、打一个新标签
默认最新提交打标签:git tag v1.0.0
针对某次提交打标签:git tag -a v1.0.0 -m "version 1.0.0 released push" a3b83d1
查看标签:git show v1.0.0

3、把本地仓库分支tag推送到远程服务器
push单个tag,命令格式:git push origin [tagname]
push所有tag,命令格式:git push [origin] --tags

4、删除标签
首先查看本地存在标签
git tag
查看远程
git ls-remote

然后先删除本地标签
git tag -d v1.0.0

然后推送到远程仓库
git push origin --delete v1.0.0

 

 

你可能感兴趣的:(git分支,git标签,git,push,git远程,git,remote,git)