关于 linux:如何在提交时限制文件大小?
How to limit file size on commit?
提交时是否有限制文件大小的选项?
例如:文件大小超过 500K 会产生警告。超过 10M 的文件大小将停止提交。
我完全了解这个问题,从技术上讲,这个问题是重复的,但答案只提供了一个推送解决方案,这对我的要求来说为时已晚。
相关讨论
- 在 git 存储库中限制文件大小的可能重复项
- @bbodenmiller,这不是重复的。你有没有把我的问题读到最后?我提到了你在最后一句中指定的问题。
- @user2476373 虽然我理解您希望找到一个在推送之前检查文件大小的解决方案,但您应该明白这是对多人实施此限制的唯一可靠方法。 pre-commit 钩子是本地钩子,因此不与存储库一起分发。在同事的机器上,这个钩子将不存在。您可能想要同时执行本地 pre-commit-hook 和远程 update-hook。
这个预提交钩子会做文件大小检查:
.git/hooks/pre-commit
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
#!/bin/sh
hard_limit=$(git config hooks.filesizehardlimit) soft_limit=$(git config hooks.filesizesoftlimit) : ${hard_limit:=10000000} : ${soft_limit:=500000} list_new_or_modified_files() unmunge() check_file_size() [ $n -eq 0 ] list_new_or_modified_files | check_file_size |
以上脚本必须保存为 .git/hooks/pre-commit 并启用执行权限 (chmod +x .git/hooks/pre-commit)。
默认的软(警告)和硬(错误)大小限制设置为 500,000 和 10,000,000 字节,但可以分别通过 hooks.filesizesoftlimit 和 hooks.filesizehardlimit 设置覆盖:
|
1
2 |
$ git config hooks.filesizesoftlimit 100000
$ git config hooks.filesizehardlimit 4000000 |
相关讨论
- 这很好,但是您希望 read 没有 -r 因为 git diff --name-status 对文件名进行编码。 (另一种选择是使用 -z 和 bash\ 使用零终止的能力,但这限制了你使用 bash。)你也可以只使用 git diff --name-only --diff-filter=d (假设 Git 版本足够新,可以理解小写 d,否则用 ACMRTUXB 拼出它,尽管其中一些无论如何都不会发生),然后消除 sed。
- @torek read 没有 -r 因为 git diff --name-status 编码文件名 不知道这一点。在脚本中添加了文件名解码。
- shell 不普遍支持 echo -e,因此如果此脚本失败(在最近的 mac bash 版本 3.2.57 上失败),则需要删除 -e 标志(env echo -e 和 env echo -E)或为了使其更便携,对 echo -e / -E 的调用应替换为 printf 例如: env printf "$result" 和 env printf 1>
@Leon\ 脚本的更短的 bash 特定版本,它以人类可读的格式打印文件大小。 --diff-filter=d 选项需要更新的 git:
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
#!/bin/bash
hard_limit=$(git config hooks.filesizehardlimit) soft_limit=$(git config hooks.filesizesoftlimit) : ${hard_limit:=10000000} : ${soft_limit:=1000000} status=0 bytesToHuman() { # Iterate over the zero-delimited list of staged files. if (( $size > $hard_limit )); then |
与其他答案一样,这必须以执行权限保存为 .git/hooks/pre-commit.
示例输出:
|
1
|
Error: Cannot commit 'foo' because it is 117.9MB, which exceeds the hard size limit of 10.0MB.
|
你需要实现你已经在 pre-commit 钩子中寻找的 eis 脚本。
从文档中,我们了解到预提交挂钩
takes no parameters, and is invoked before obtaining the proposed commit log message and making a commit. Exiting with a non-zero status from this script causes the git commit command to abort before creating a commit.
基本上,调用钩子来检查是否允许用户提交他的更改。
eis原来在其他帖子上做的脚本变成了
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
#!/bin/bash
# File size limit is meant to be configured through 'hooks.filesizelimit' setting filesizelimit=$(git config hooks.filesizelimit) # If we haven't configured a file size limit, use default value of about 10M # You specify a warning limit # With this command, we can find information about the file coming in that has biggest size # Based on that, we can find what we are interested about # Actual comparison # To be more user-friendly, we also look up the name of the offending file echo"Error: Too large push attempted.">&2 |
相关讨论
- 此脚本检查已提交文件的大小(对应于 HEAD),因此不适合作为预提交挂钩
只是想评论@Leon 提供的解决方案太棒了。如果一个空目录开始尝试被跟踪,我遇到了一个小障碍,它中止了。所以我不得不添加
|
1
|
[ -d"$f" ] && continue
|
在ls-files命令之前有避免错误。
我更愿意发表评论,因为这不是答案,但我没有声誉积分。
注意:我知道 git \'ignores\' 目录,但显然不是在预提交挂钩运行之前。
有一个通用的预提交钩子。您可以编写一个脚本来检查文件大小,然后接受或拒绝提交。然而,Git 让用户能够从命令行类型"git help hooks"中绕过检查以获取更多信息。这是关于预提交挂钩的相关信息。
预提交
这个钩子由 git commit 调用,可以通过 --no-verify 选项绕过。它不带参数,并在获取建议的提交日志消息并进行提交之前调用。从此脚本中以非零状态退出会导致 git 提交中止。
相关讨论
- 我看不到答案。缺少链接吗?