常用git命令

本文共有888个字,关键词:
## 提交分支数据到远程服务器
### a.远程已有remote_branch分支并且已经关联本地分支local_branch且本地已经切换到local_branch
git push

### b.远程已有remote_branch分支但未关联本地分支local_branch且本地已经切换到local_branch
git push -u origin/remote_branch

### c.远程没有remote_branch分支并且本地已经切换到local_branch
git push origin local_branch:remote_branch

## 删除远程分支
git push origin :<remote_branch_name>
## 或者
git branch -d -r <remote_branch_name>

## 创建本地dev分支
git branch dev

## 从当前分支切换到dev分支
git checkout dev

## 创建并切换到d本地ev分支
git checkout -b dev


## 查看本地所有分支情况
git branch

## 获取远程dev分支
git pull origin dev

## 删除本地分支local_branch
git branch -d local_branch

## 重命名分支 :如果newbranch名字分支已经存在,则需要使用-M强制重命名,否则,使用-m进行重命名。
git branch -m | -M oldbranch newbranch 

## 查看远程和本地分支
git branch -a

## 合并指定分支到当前分支
git merge dev

## 查看工作区
git status


## 合并特定的commit到当前分支
git cherry-pick commit-id1

「一键投喂 软糖/蛋糕/布丁/牛奶/冰阔乐!」

fengxianqi

(๑>ڡ<)☆谢谢老板~

使用微信扫描二维码完成支付

版权声明:本文为作者原创,如需转载须联系作者本人同意,未经作者本人同意不得擅自转载。
添加新评论
暂无评论