Git在行规范化后插入unicode字符

时间:2016-08-10 18:12:28

标签: git unicode tfs mingw

这是一个非常奇怪的情况,我希望有人可以提供帮助。我在TFS 2015中使用git,我一直在尝试规范化存储库中的行结尾。

背景

我一直在尝试以下各种组合:

git rm --cached -r .
git reset --hard

git rm --cached -r .
git add --all .
git commit -am "commit msg"

我已经运行了很多次这些命令,同时还使用了git config --global core.autocrlf设置。我只尝试了truefalse - 我没有使用input

在尝试所有这些时,我也一直在添加/删除和修改我的.gitattributes文件。

问题

我在上次提交后注意到,repo中的一些文件现在每隔一行替换为大量的unicode字符。在Notepad ++中观察到“显示所有字符”已打开:

Unicode madness

请注意,CR和LF似乎也分成了多行 - “CR”行覆盖了文件中的现有行。

当我关闭“显示所有字符”时,只有CR和LF消失 - 文件中的其他所有内容都是物理字符。这些文件也显示为“在UCS-2 LE BOM中编码”而不是“UTF-8 BOM”,正如我所料:

File Encoding

我尝试过什么

我查找了发生这种情况的提交,但它不存在。如果我重置回一个我知道其中包含原始文件内容的提交,则没有任何更改 - 无论我重置的是什么提交,文件都保持原样。

另外需要注意的是,当我通过TFS UI查看文件时,它看起来很好:

TFS

提交历史记录正如我所料 - 最后一次提交是在几个小时之前(这是我一直试图重置的那个)。

我可以通过TFS用户界面上的下载按钮下载受影响的文件,它们看起来很好。

我试图覆盖我本地仓库中的一些下载文件 - 希望我可以通过另一次提交对其进行排序,但是git会抱怨行结尾,并且文件没有暂存。

ME@MYMACHINE MINGW64 /d/git/CLIENT.Core.ProjectTemplates (feature/code-policies)
$ git st
On branch feature/code-policies
Your branch is up-to-date with 'origin/feature/code-policies'.
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   Powershell/TFS/templates/buildDefinitions/CLIENT/CLIENT.WCFService-CI.json

no changes added to commit (use "git add" and/or "git commit -a")

ME@MYMACHINE MINGW64 /d/git/CLIENT.Core.ProjectTemplates (feature/code-policies)
$ git commit -am "testing overwrite"
warning: LF will be replaced by CRLF in Powershell/TFS/templates/buildDefinitions/CLIENT/CLIENT.WCFService-CI.json.
The file will have its original line endings in your working directory.
On branch feature/code-policies
Your branch is up-to-date with 'origin/feature/code-policies'.
nothing to commit, working directory clean

ME@MYMACHINE MINGW64 /d/git/CLIENT.Core.ProjectTemplates (feature/code-policies)
$ git st
On branch feature/code-policies
Your branch is up-to-date with 'origin/feature/code-policies'.
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        modified:   Powershell/TFS/templates/buildDefinitions/CLIENT/CLIENT.WCFService-CI.json

no changes added to commit (use "git add" and/or "git commit -a")

然后,当我尝试添加“已修改”文件时,它只会报告以下内容:

ME@MYMACHINE MINGW64 /d/git/CLIENT.Core.ProjectTemplates (feature/code-policies)
$ git add --all .
warning: LF will be replaced by CRLF in Powershell/TFS/templates/buildDefinitions/CLIENT/CLIENT.WCFService-CI.json.
The file will have its original line endings in your working directory.

ME@MYMACHINE MINGW64 /d/git/CLIENT.Core.ProjectTemplates (feature/code-policies)
$ git st
On branch feature/code-policies
Your branch is up-to-date with 'origin/feature/code-policies'.
nothing to commit, working directory clean

虽然这可能有用,但问题是有很多文件,如果我能提供帮助,我真的不想手动重建回购!

我还试图完全删除我的repo并重新克隆,但重新克隆后文件保持不变。我也尝试克隆到磁盘上的其他位置。

我刚刚测试了在另一台机器上克隆了repo - 同样的行为也发生在那里 - 所以它肯定与遥控器有关。

最后,值得注意的是,这些文件存在于名为feature / code-policies的分支中。我试图分支该分支以查看分支本身是否存在问题,但它没有任何区别。我假设分支本身有腐败的东西?

以前有人见过这样的事吗?有没有人知道可能会发生什么,以及我如何能够解决问题?

1 个答案:

答案 0 :(得分:-1)

假设您正在使用Windows计算机。 Dealing with line endings,您可以配置全局设置或每个存储库设置。

  • 行结尾的全局设置

在Windows上,您只需将true传递给配置即可。例如:

git config --global core.autocrlf true
# Configure Git on Windows to properly handle line endings 
  • 每个存储库设置

或者,您可以通过配置特殊的 .gitattributes 文件,配置Git基于每个存储库管理行结尾的方式。必须在存储库的根目录中创建 .gitattributes 文件,并像任何其他文件一样进行提交。

以下是 .gitattributes 文件的示例。您可以将其用作存储库的模板:

# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
  • 更改行结束后刷新存储库

将当前文件保存在Git中,这样就不会丢失任何工作。

git add . -u
git commit -m "Saving files before refreshing line endings"

从Git的索引中删除所有文件。

git rm --cached -r .

重写Git索引以获取所有新行结尾。

git reset --hard

重新添加所有已更改的文件,并为提交做好准备。这是您检查哪些文件(如果有)未更改的机会。

git add .
# It is perfectly safe to see a lot of messages here that read
# "warning: CRLF will be replaced by LF in file."

将更改提交到您的存储库。

git commit -m "Normalize all the line endings"

检查您的步骤,看看它们是否正确。