git 常用

git 使用

git  status — 查看状态

git  branch —查看分支,打*号的为主分支


-----------------------------------------------

1. 创建分支过程

首先下载    git clone ******

查看分支    git branch 

然后从主干打分支 git branch shuang.he master

切换分支    git checkout shuang.he

查看日志             git log


-----------------------------------------------

2.修改完成后,提交代码

git checkout master

git pull

git checkout shuang.he

git rebase master

git push origin  HEAD:shuang.he

git checkout shuang.he

登陆code 提交request 给其他用户

然后其他人合并

-----------------------------------------------

3.合并其他人代码

git checkout master

git pull

gti checkout shuang.he

git rebase master


-----------------------------------------------

4.从远端分支开发,

git pull

git checkout —track -b wish origin/wish

 从远端checkout一个分支到本地,并重命名:

git checkout --track -b [local-branch-name] origin/[origin-branch-name]

git branch shuang.he wish

git checkout shuang.he


-----------------------------------------------

5.提交到远程分支

git commit -a -m "update"

git checkout wish

git pull

git checkout shuang.he

git rebase wish

git push origin HEAD:shuang.he

登录code —ci—lightMerge — source branch 选择自己的,提交请求

refresh and push


-----------------------------------------------

6.删除远程分支:git push origin —delete shuang.he

rebase 冲突

解决冲突

git add .

git rebase — continue


-----------------------------------------------

7.git add后,如何删除

使用 git rm 命令即可,有两种选择,

一种是 git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除;

一种是 git rm --f "文件路径",不仅将该文件从缓存中删除,还会将物理文件删除(不会回收到垃圾桶)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值