mac gitee新建工程遇到的一些问题

首先,记录一下mac系统显示隐藏文件夹的快捷键:command+shift+句号,可以显示工程目录下的隐藏的git文件夹

一 git报错:'origin'does not appear to be a git repository的解决方法

找到工程目录下的.git/config文件发现里边没有remote origin的配置,手动填上去,如下:

bash 复制代码
[core]
	repositoryformatversion = 0
	filemode = false
	bare = false
	logallrefupdates = true
	symlinks = false
	ignorecase = true
[remote "origin"]
	url = 远程仓库地址
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
	remote = origin
	merge = refs/heads/master

二 git报错fatal: 'origin' does not appear to be a git repository Could not read from remote repository

检查remote内容

bash 复制代码
git remote -v

删除远程origin

bash 复制代码
git remote rm origin

检查是否完全删除

bash 复制代码
git remote -v

重新建立连接

bash 复制代码
git remote add origin 远程仓库的地址

三 git报错fatal: refusing to merge unrelated histories

bash 复制代码
git merge master --allow-unrelated-histories
git pull --allow-unrelated-histories
git push origin master
相关推荐
凄凄迷人3 小时前
如何调试 chrome 崩溃日志(MAC)
前端·chrome·macos·crash
钢门狂鸭3 小时前
mvn-mac操作小记
macos·maven
疯狂的沙粒3 小时前
mac 安装node提示 nvm install v14.21.3 failed可能存在问题
macos
赶路人儿3 小时前
IntelliJ IDEA配置(mac版本)
java·macos·intellij-idea
木有会3 小时前
【mac】mac自动定时开关机和其他常用命令,管理电源设置的工具pmset
macos
木有会4 小时前
【mac】终端左边太长处理,自定义显示名称(terminal路径显示特别长)
macos
_im.m.z5 小时前
Mac配置和启动 Tomcat
java·macos·tomcat·ssm框架
丁总学Java5 小时前
在 Mac(ARM 架构)上安装 JDK 8 环境
arm开发·macos·架构
koko爱英语5 小时前
Jmeter测试工具的安装和使用,mac版本,jmeter版本5.2.1
测试工具·jmeter·macos
菜鸟小贤贤5 小时前
pyhton+yaml+pytest+allure框架封装-全局变量渲染
python·macos·pytest·接口自动化·jinja2