如何处理二进制文件的 gitting,例如 .mo 文件

发布于 2024-08-24 14:33:13 字数 134 浏览 4 评论 0原文

有没有一种简单的方法来处理git操作中的二进制文件?我认为在这种情况下我的理想 - .mo 文件(二进制 .po 消息)的“合并” - 是优先考虑新文件,将其复制到旧文件的顶部。

那么我可以配置 git 来执行此操作还是始终需要手动练习?

Is there a simple way to handle binary files in git operations? I think my ideal in this case - 'merging' of .mo files (binary .po messages) - would be to give precedence to the newer file, copying it over the top of the older one.

So can I configure git to do this or is it always going to be a manual exercise?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

行雁书 2024-08-31 14:33:13

您可以在 gitattributes 文件 中添加自定义合并驱动程序(请参阅这个所以问题),仅适用于 *.mo 文件且仅位于相关目录中。

echo *.mo merge=keepTheir > dirWithMoFiles\.gitattributes
git config merge.keepTheir.name "always keep theirduring merge"
git config merge.keepTheir.driver "keepTheir.sh %O %A %B"

使用 keepTheir.sh 为:

mv -f $3 $2
exit 0

You could add a custom merge driver in a gitattributes file (see this SO question), only for the *.mo files and only in the relevant directories.

echo *.mo merge=keepTheir > dirWithMoFiles\.gitattributes
git config merge.keepTheir.name "always keep theirduring merge"
git config merge.keepTheir.driver "keepTheir.sh %O %A %B"

With keepTheir.sh as:

mv -f $3 $2
exit 0
狠疯拽 2024-08-31 14:33:13

最好的想法是不要将生成的文件(例如 .mo 文件)置于版本控制之下。

如果您仍然希望将它们保留在 Git 中,请使用标准方法来解决冲突。

例如,您可以获得冲突文件的任一版本:

git checkout --theirs -- dir/file.mo
git checkout --ours -- dir/file.mo

或者使用 git mergetool 它将为您提供冲突文件的两个版本。

Well the best idea is not to keep generated files (such as .mo files) under version control.

If you still want to have them in Git, use standard ways to resolve conflicts.

For example you can get either version of conflicting file:

git checkout --theirs -- dir/file.mo
git checkout --ours -- dir/file.mo

Or use git mergetool which will provide you both versions of conflicting file.

宫墨修音 2024-08-31 14:33:13

基本上这个概念在这里很好地解释了 我如何告诉 git 始终选择本地版本来进行特定文件上的冲突合并?

这是一个 bash 脚本,简化了其中描述的步骤
https://github.com/equivalent/git_to_svn_behavior-

(如何在 Readme 中运行的步骤)

basically this concept was nicely explain here How do I tell git to always select my local version for conflicted merges on a specific file?

and here is a bash script simplifying the steps described there
https://github.com/equivalent/git_to_svn_behavior-

(steps how to run in Readme)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文