让 git 知道文件已重命名 - OS X 文件从小写重命名为大写显示为未跟踪
我在没有使用 git mv 或任何其他 git 命令的情况下重命名了一个文件夹,从小写到大写,现在 git 将新文件夹显示为未跟踪,同时正在跟踪文件夹内的文件。
我将“Jogo do Rato”重命名为“Jogo do Rato”,然后创建了 git add --all。 Git 发现了新文件并进行了应有的更改,但它现在将“Jogo do Rato”内的每个文件夹显示为未跟踪。我想摆脱这个“未跟踪”的文件,但不知道该走什么路。
我使用的是 OS X Snow Leopard,我的驱动器位于 Mac OS Extended(日志式)中,不区分大小写,git 版本为 1.6.6。
问候,
塞尔吉奥
I renamed a folder without using git mv or any other git command, from lowercase to uppercase, now git shows the new folder as not tracked and at the same time is tracking files inside the folder.
I renamed "Jogo do rato" to "Jogo do Rato" and than made a git add --all. Git found new files and changes as it should but it now shows every folder inside "Jogo do Rato" as untracked. I would like to get rid of this "untracked" files, but am at loss as what way to go.
I'm using OS X Snow Leopard, my drive is in Mac OS Extended (Journaled), case insensitive and git version 1.6.6.
Regards,
Sérgio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法找到解决问题的方法。我将配置选项 core.ignorecase 从 true 更改为 false,重新添加 git 始终将其视为新文件的文件,然后提交我的改变。
我仍在寻找是否丢失了某些东西,或者是否有任何东西处于不应该的状态,但我认为我能够解决这个问题。
I manage to find a way to solve the problem. I changed the config option
core.ignorecase
fromtrue
tofalse
, re-added the files that git was always seeing as new files, and commited my changes.I'm still looking to see if I lost something or if anything is in a state that shouldn't be but I think I was able to solve this problem.