gpt4 book ai didi

windows - 奇怪的 git 错误

转载 作者:可可西里 更新时间:2023-11-01 09:34:59 25 4
gpt4 key购买 nike

我想做的是,获取 dropbox 项目的本地克隆,进行更改,然后推送到该项目。

我的电脑规范是:Os Win 8 X64,Git-1.7.11

我做了以下步骤:

  1. 将原始项目文件复制到 Dropbox 文件夹中
  2. 在位于本地文件系统、Dropbox 文件夹的项目目录中初始化 git repo
  3. 然后通过键入 git clone absolute/path/to/the/folder
  4. 克隆该目录
  5. 为了测试对文件进行了一些更改,提交..一切顺利
  6. 当我尝试通过键入 git push origin master 来推送时,收到此错误消息

enter image description here

原始 TXT 看起来像那样

$ git push origin master
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 322 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare reposit
remote: error: is denied, because it will make the index and work tree incon
ent
remote: error: with what you pushed, and will require 'git reset --hard' to
h
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variabl

remote: error: 'ignore' or 'warn' in the remote repository to allow pushing

remote: error: its current branch; however, this is not recommended unless y
remote: error: arranged to update its work tree to match what you pushed in

remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour,

remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse
To F:\Cloud\Dropbox\Web Server\pcand.me
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'F:\Cloud\Dropbox\Web Server\pcand.me'

尝试完全卸载并清除痕迹并重新安装 3 次,执行上述步骤 2-3 次。没有任何帮助

我错过了什么?

最佳答案

通常,推送到非裸仓库不是一个好主意。

我要做的是:

创建一个空目录“/path/to/bare/repository”输入该目录并执行

git init --bare

这将初始化一个可以安全推送的 git 结构。不要将 Dropbox 文件夹中的任何文件放在那里。

创建一个空目录“/path/to/working/folder”

将dropbox文件复制到那里,进入目录并输入以下命令

git init
git remote add origin /path/to/bare/repository
git commit -a -m 'Initial commit'
git push origin master

git init 命令没有 --bare 参数,因此这将是一个工作文件夹,您可以在其中查看您的文件。将文件推送到“原始”存储库后,检查裸存储库的内容。你不会在那里找到任何可读文件,只有你的 git 索引。

关于windows - 奇怪的 git 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12273124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com