git分支常用命令

最近在用git提交代码的时候,发现有些命令不是很会,先记录几个常用分支命令,后续再补充,在执行git push命令提交代码的时候遇到报错,一并记录下。

1.git常用命令

新建分支:

复制代码
git branch <分支名称> 

比如:git branch test,创建一个test分支。

切换分支:

复制代码
git checkout <分支名称> 

比如:git checkout test,切换到test分支。

删除分支:

复制代码
git push <远程仓库别名> --delete <分支名称> 

比如:git push origin --delete test,删除远程仓库origin中的test。

合并分支:

复制代码
git merge 分支名称  (当前分支为待合并分支的主干分支,分支名称为其它待合并分支)

比如通过git branch命令查看当前分支为master,test为master的分支,想将test分支合并到master上,那么只需要执行命令:git merge test。

查看所有分支

复制代码
git branch

2.提交代码报错

在执行命令:git push -u "master"的时候,系统报错提示fatal:orgin' does not appear to be a git repository,fatal:couid not read from remote repository.",如下图所示。

解决方法:

输入以下代码,这是因为本地的分支没有和远程分支建立联系,需要执行以下代码就可以正常push了。

复制代码
git push --set-upstream origin master
相关推荐
GHL2842710903 小时前
git cherry-pick使用
git
小龙4 小时前
【Git 报错解决】本地分支与远程分支名称/提交历史不匹配
大数据·git·elasticsearch·github
阿正的梦工坊5 小时前
Git Rebase 是什么?为什么需要它?
人工智能·git
ASEpochs6 小时前
Vsocde中‘sh’不是内部或外部命令,也不是可运行的程序或批量处理文件--已解决
git·vscode·bash
coding消烦员7 小时前
在 Windows 内网搭建 Git 仓库:共享普通仓库 vs 中心 bare 仓库
windows·git
李@十一₂⁰8 小时前
git多分支管理
大数据·git·elasticsearch
爱写代码的派大星8 小时前
git 拉取和合并
git
别或许10 小时前
Gitee新手使用全解
gitee
Kp独立开发11 小时前
开源项目二次开发最佳实践:Fork + 分支隔离与同步
git·开源
Galaxy~56714 小时前
Git常见命令及用法
大数据·git·elasticsearch