gpt4 book ai didi

git - 如何更改 GitHub 上的文件模式?

转载 作者:IT王子 更新时间:2023-10-29 00:53:45 32 4
gpt4 key购买 nike

$ git add test-file

$ git commit -m 'first commit'
create mode 100644 test-file

$ git push

$ git update-index --add --chmod=+x test-file

$ git commit -m 'change mode'
mode change 100644 => 100755 test-file

$ git push

之后,如果您转到 GitHub,无论如何它仍然显示为 100644。

最佳答案

MSYS 不是问题。即使 MSYS chmod 不工作(它不工作),Git 有一个内置的方法来解决这个问题,即 git update-index --chmod=+x。明确表示 git update-index只会弄乱索引(暂存区),不会弄乱本地存储库(工作目录)。

我确信问题出在 GitHub 上。在 GitHub 上,如果文件最初使用模式 100775 推送,则一切正常。如果文件最初被推送为 100644,则会导致问题。尝试更改文件模式将通过 git add 成功,通过 git commit 成功,通过 git push 成功,甚至会显示在 GitHub 中文件历史记录,但不会反射(reflect)在 GitHub 上的“blob/master”页面上。

更新

From: Petros Amiridis (GitHub Staff)

Subject: How to change FIle Mode on GitHub?

I have some good news. Our awesome team has just confirmed it is a caching bugon our end. Our team has deployed a fix.

关于git - 如何更改 GitHub 上的文件模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9027584/

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