msysgit:不设置隐藏标志的选项
我正在使用 msysgit,对于以斜杠开头的文件,例如 .classpath
,它会自动设置 hidden 标志,这使得 IDE 无法覆盖它。如何防止设置这个隐藏标志?
I'm using msysgit and for files starting with a slash, e.g. .classpath
it automatically sets the hidden flag which makes it impossible for IDEs to overwrite it. How to prevent setting this hidden flag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加 --global 使其成为所有新存储库的默认行为:
Add --global to make this the default behaviour for all new repos:
在创建新存储库之前,请确保在设置 core.hidedotfiles 时使用 Git 2.22(2019 年第 2 季度)。
之前,“
git init
”忘记读取特定于平台的存储库配置,这使得 Windows 端口忽略core.hidedotfiles
的设置。请参阅 提交 2878533(2019 年 3 月 11 日),作者:Johannes Schindelin (
dscho
)。(由 Junio C Hamano --
gitster
-- 合并于 提交 6364386,2019 年 4 月 16 日)这更加强大Git 2.32(2021 年第 2 季度),修复了一些漏洞。
请参阅提交 68ffe09、提交 64cc539, 提交0171dbc(2021 年 3 月 21 日),以及提交 04fe4d7,提交e4de450,提交 aa1b639, 提交 0c45427, 提交 e901de6, 提交 f63b888(2021 年 3 月 14 日),作者: Andrzej狩猎 (
ahunt
)。(由 Junio C Hamano --
gitster
-- 合并于 提交 642a400,2021 年 4 月 7 日)Make sure to use Git 2.22 (Q2 2019) when setting the
core.hidedotfiles
, before creating new repositories.Before, "
git init
" forgot to read platform-specific repository configuration, which made Windows port to ignore settings ofcore.hidedotfiles
, for example.See commit 2878533 (11 Mar 2019) by Johannes Schindelin (
dscho
).(Merged by Junio C Hamano --
gitster
-- in commit 6364386, 16 Apr 2019)This is more robust with Git 2.32 (Q2 2021), where some leaks are plugged.
See commit 68ffe09, commit 64cc539, commit 0171dbc (21 Mar 2021), and commit 04fe4d7, commit e4de450, commit aa1b639, commit 0c45427, commit e901de6, commit f63b888 (14 Mar 2021) by Andrzej Hunt (
ahunt
).(Merged by Junio C Hamano --
gitster
-- in commit 642a400, 07 Apr 2021)