git pull 返回“不是 git 存储库”错误

git pull 返回“不是 git 存储库”错误

我正在尝试从远程存储库提取代码。当我运行“git pull”时,我收到以下消息:

$ git pull
[email protected]'s password:
fatal: 'var/www/html' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

这是我的配置设置:

$ git config -l
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
merge.tool=tortoisemerge
gui.recentrepo=C:/Users/Chris/Dev/Projects/html
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
[email protected]:var/www/html
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
user.name=Chris Barnhill
user.email=*@gmail.com
gui.wmstate=normal
gui.geometry=887x427+26+26 171 192

顺便说一句,“gui.recentrepo”是错误的。我的本地仓库位于/Users/Chris/Dev/Projects/Hyperspace/html'

答案1

您确定远程仓库的位置吗?应该是 /var/www/html 吗?

看起来您正在访问相对路径。

答案2

我根据你的回答更新的问题。您正在尝试推送到非裸存储库,这意味着实际包含工件的存储库。裸存储库是指“不包含工作目录“。在您尝试推送到的远程存储库中,主分支已被检出,因此 Git 拒绝该尝试。

进一步解释一下,假设 Alice 和 Bob 正在处理同一个项目。Bob 克隆了 Alice 的工作存储库,然后他们各自分道扬镳,但都在同一个分支上工作,比如说master。如果 Bob 尝试将他的更改推送到origin/masterAlice 的工作存储库,Git 允许这样做,Alice 可能会突然使用她不知道(并且可能不想要)的代码库的新状态。这只是一个示例场景。

相关内容