首页 > 其他分享 >git常用命令

git常用命令

时间:2023-02-08 11:11:35浏览次数:40  
标签:origin git name branch 常用命令 push 分支

 

  • 设置git push和pull的默认远程分支  

 

 

    git branch --set-upstream-to=origin/master master

 

 

  • 删除本地或者远程分支     

 

 

    本地:git branch -d [branch name]   远程:git push origin --delete branchName  或者 git push origin :branchName

 

  • 创建+切换分支      

    git checkout -b [branch name]

  • 推送本地新分支到远程仓库    

    git push origin [branch name]:[branch name] 或者 git push origin [branch name]

  • 查看远程分支 以及 查看所有分支  

    git branch -r    git branch -a
  • 本地分支和远程分支建立映射关系 

   git branch -u origin/分支名,或者git branch --set-upstream-to origin/分支名  查看映射关系:git branch -vv

  • git回退版本代码 强推至远程仓库

   git reset --hard HEAD^    git push -f origin master   如果是master有保护机制 还需要设置gitlab  选中项目,settings ==> repository ==> Protected Branches ==> Unprotect 推送完再设置保护上

 

标签:origin,git,name,branch,常用命令,push,分支
From: https://www.cnblogs.com/lucky06y/p/17101037.html

相关文章

  • 常用命令
    gitcheckout8322165(release中7位版本号)np.where(state>1000,state/10000,state)[root@localhost~]#vncserverNew'localhost:1(root)'desktopislocalhost:1sud......
  • git: 移除远程映射,remote origin
    背景在添加远程映射的时候,把远程仓库地址写错了。。。。[email protected]:错的.git解決方法方法一:ChangetheURI(URL)foraremoteGitrepo......
  • 【git使用】
    常用命令pwd:显示当前目录gitinit:将当前目录变成git可管理的仓库以纯文本方式编写git,最好使用UTF-8编码。除了gitinit外的所有git命令都必须要在git仓库内执行。添......
  • Linux常用命令行记录
    Linux系统相关pwd显示工作路径shutdown-hnow关闭系统/halt关闭系统shutdown-rnow重启/reboot重启systemctlstopfirewalld关闭防火墙ipaddr......
  • Git安装
    git安装在自己的电脑上,版本控制是对自己电脑的版本,只能在本地中心又称仓库,代码托管的仓库安装方法在官网中就有,可以参考官网:https://git-scm.com/中文官网:https://git.......
  • Linux常用命令-文件相关(学习笔记一)
    学习整理文件和文件夹常用的命令,记录常规用法,便于查找,详细的命令用法后续研究创建文件夹mkdirfolderName重命名文件夹mv是移动文件和文件夹,可以将文件夹移动......
  • git rebase 详解
    今天我们来聊一下git中的变基gitrebase命令的文档描述是 Reapplycommitsontopofanotherbasetip,从字面上理解是「在另一个基端之上重新应用提交」,这个定义听起来有......
  • 如何修剪git reflog历史
    背景:vscode插件git-graph可以方便查看git-commit-graph,效果很好,关键是交互性很好。点选任意commit即可预览提交内容,实在是太方便了,比我之前用命令行上gitlog--graph--o......
  • git合并、修改一些已经提交的命令
    折腾了一下(写一下,免的忘了)1、首先查看查看是到多少,命令 gitlog2、开始变基最开始的几个是(head~多少),其余的大家用的时候再查阅其他的看看,我就说说简......
  • git 分支
    如果主分支不为master,如new_trunk:1、#gitcheckout-bV3.18.45origin/V3.18.452、#gitbranch-va3、#gitcheckoutnew_trunk4、#gitmergeV3.18.45-m“Build-Ta......