博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git常用命令
阅读量:6623 次
发布时间:2019-06-25

本文共 1091 字,大约阅读时间需要 3 分钟。

  hot3.png

1 查看远程分支

git branch -a  

2 查看本地分支

git branch 

3 创建本地分支 local_branch

git branch local_branch

4.把分支推到远程分支 

git push origin <branchName>

5 切换到分支local_branch

git checkout local_branch

6 删除本地分支local_branch

git branch -d local_branch

7 删除远程分支remote_branch

git push origin --delete <branchName>

或(注意:前的空格,推送一个空分支到远程分支,其实就相当于删除远程分支)

git push origin  :remote_branch

删除远程Tag

git push origin --delete tag <tagname>

8 本地提交

git commit -am "注释"

9 推送本地分支local_branch到远程分支 remote_branch并建立关联关系

 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

10 本地代码库回滚

git reset --hard commit-id :回滚到commit-id,讲commit-id之后提交的commit都去除

git reset --hard HEAD~3:将最近3次的提交回滚

11.删除掉没有与远程分支对应的本地分支

git fetch -p

12.修改 remote 的url

git remote set-url origin newUrl

 

GIT教程:

http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000

http://blog.jobbole.com/76843/

转载于:https://my.oschina.net/shajin/blog/790976

你可能感兴趣的文章
iphone http下载文件
查看>>
poj 1195:Mobile phones(二维树状数组,矩阵求和)
查看>>
Codeforces 433 C. Ryouko&#39;s Memory Note
查看>>
java中的Static class
查看>>
实例讲解Linux下的makefile
查看>>
json lib 2.4及其依赖包下载
查看>>
计算机中文核心期刊
查看>>
sql的left join 命令
查看>>
8148 8168 中移植live55 出现except rtsp 中途莫名的断流
查看>>
【BZOJ】3832: [Poi2014]Rally
查看>>
[转]看懂ExtJS的API
查看>>
宜昌民生大厦
查看>>
推荐15款制作 SVG 动画的 JavaScript 库
查看>>
转:OpenResty最佳实践(推荐了解lua语法)
查看>>
转:CEO, CFO, CIO, CTO, CSO是什么
查看>>
ROC曲线(receiver-operating-characteristic curve)-阈值评价标准(转)
查看>>
Swift 表达式
查看>>
FFmpeg(8)-打开音视频解码器,配置解码器上下文(avcodec_find_decoder()、avcodec_alloc_context3())...
查看>>
andriod自定义视图
查看>>
linux下vim更改注释颜色
查看>>