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
相关推荐
allanGold6 小时前
【xcode 16.2】升级xcode后mac端flutter版的sentry报错
macos·xcode16.2
gxhlh13 小时前
局域网中 Windows 与 Mac 互相远程连接的最佳方案
windows·macos
宏基骑士13 小时前
mac 电脑上安装adb命令
macos·adb
水银嘻嘻19 小时前
【Mac】Python相关知识经验
开发语言·python·macos
梦魇梦狸º2 天前
mac 配置 python 环境变量
chrome·python·macos
丁总学Java2 天前
macOS如何进入 Application Support 目录(cd: string not in pwd: Application)
macos
qdprobot2 天前
Mixly米思齐1.0 2.0 3.0 软件windows版本MAC苹果电脑系统安装使用常见问题与解决
windows·macos
麦克Mapp2 天前
不用安装双系统,如何在mac上玩windows游戏呢?
macos
符小易2 天前
Mac苹果电脑 怎么用word文档和Excel表格?
macos·word·excel
梦魇梦狸º2 天前
node安装与管理
macos·node.js