找到二进制文件。请不要将二进制文件提交到 SVN
Binary files were found. Please don't commit binary files into SVN
我尝试使用 Tortoise svn 在我的应用程序的 bin 文件夹中提交一些新的 dll。但是它在提交时抛出以下错误。
svn: E165001: Commit failed (details follow):
svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output:
Binary files were found. Please don't commit binary files into SVN..!!
如何防止此错误并提交 bin 文件夹中的新 dll?
您是否阅读了错误消息?它说:
Binary files were found. Please don't commit binary files into SVN..!!
这意味着您的管理员配置了一个 hook script 来阻止您提交和导入某些类型的文件(可能基于它们的扩展名或 MIME 类型)。你不能(也不应该)自己摆脱这个错误。联系您的管理员或经理,他会向您解释您做错了什么。
我尝试使用 Tortoise svn 在我的应用程序的 bin 文件夹中提交一些新的 dll。但是它在提交时抛出以下错误。
svn: E165001: Commit failed (details follow):
svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output:
Binary files were found. Please don't commit binary files into SVN..!!
如何防止此错误并提交 bin 文件夹中的新 dll?
您是否阅读了错误消息?它说:
Binary files were found. Please don't commit binary files into SVN..!!
这意味着您的管理员配置了一个 hook script 来阻止您提交和导入某些类型的文件(可能基于它们的扩展名或 MIME 类型)。你不能(也不应该)自己摆脱这个错误。联系您的管理员或经理,他会向您解释您做错了什么。