2613

我有一个项目,我必须chmod在开发时将文件模式更改为 777,但不应在主仓库中更改。

Git 接受chmod -R 777 .并将所有文件标记为已更改。有没有办法让 Git 忽略对文件所做的模式更改?

4

12 回答 12

4350

尝试:

git config core.fileMode false

git-config(1)

core.fileMode
    Tells Git if the executable bit of files in the working tree
    is to be honored.

    Some filesystems lose the executable bit when a file that is
    marked as executable is checked out, or checks out a
    non-executable file with executable bit on. git-clone(1)
    or git-init(1) probe the filesystem to see if it handles the 
    executable bit correctly and this variable is automatically
    set as necessary.

    A repository, however, may be on a filesystem that handles
    the filemode correctly, and this variable is set to true when
    created, but later may be made accessible from another
    environment that loses the filemode (e.g. exporting ext4
    via CIFS mount, visiting a Cygwin created repository with Git
    for Windows or Eclipse). In such a case it may be necessary
    to set this variable to false. See git-update-index(1).

    The default is true (when core.filemode is not specified
    in the config file).

-c标志可用于为一次性命令设置此选项:

git -c core.fileMode=false diff

键入-c core.fileMode=false可能很麻烦,因此您可以为所有 git 存储库或仅为一个 git 存储库设置此标志:

# this will set your the flag for your user for all git repos (modifies `$HOME/.gitconfig`)
git config --global core.fileMode false

# this will set the flag for one git repo (modifies `$current_git_repo/.git/config`)
git config core.fileMode false

此外,git clone并在 repo 配置中git init显式设置core.fileModeGit global core.fileMode false 在克隆上本地覆盖true

警告

core.fileMode不是最佳做法,应谨慎使用。此设置仅涵盖模式的可执行位,而不涵盖读/写位。在许多情况下,您认为您需要此设置,因为您执行了类似chmod -R 777的操作,使您的所有文件都可执行。但在大多数项目中,出于安全原因,大多数文件不需要也不应该是可执行的

解决这种情况的正确方法是分别处理文件夹和文件权限,例如:

find . -type d -exec chmod a+rwx {} \; # Make folders traversable and read/write
find . -type f -exec chmod a+rw {} \;  # Make files read/write

如果你这样做,你将永远不需要使用core.fileMode,除非在非常罕见的环境中。

于 2009-10-16T21:53:40.683 回答
300

撤消工作树中的模式更改:

git diff --summary | grep --color 'mode change 100755 => 100644' | cut -d' ' -f7- | xargs -d'\n' chmod +x
git diff --summary | grep --color 'mode change 100644 => 100755' | cut -d' ' -f7- | xargs -d'\n' chmod -x

或者在 mingw-git

git diff --summary | grep  'mode change 100755 => 100644' | cut -d' ' -f7- | xargs -e'\n' chmod +x
git diff --summary | grep  'mode change 100644 => 100755' | cut -d' ' -f7- | xargs -e'\n' chmod -x
于 2010-01-18T02:20:15.120 回答
148

如果要为所有存储库设置此选项,请使用该--global选项。

git config --global core.filemode false

如果这不起作用,您可能正在使用较新版本的 git,因此请尝试该--add选项。

git config --add --global core.filemode false

如果你在没有 --global 选项的情况下运行它并且你的工作目录不是一个 repo,你会得到

error: could not lock config file .git/config: No such file or directory
于 2012-04-21T12:00:50.843 回答
104

如果

git config --global core.filemode false

对您不起作用,请手动执行:

cd into yourLovelyProject folder

cd 进入 .git 文件夹:

cd .git

编辑配置文件:

nano config

将 true 更改为 false

[core]
        repositoryformatversion = 0
        filemode = true

->

[core]
        repositoryformatversion = 0
        filemode = false

保存,退出,进入上层文件夹:

cd ..

重新初始化 git

git init

你完成了!

于 2013-08-06T13:10:33.580 回答
56

添加到Greg Hewgill 答案(使用core.fileMode配置变量):

您可以使用git update-index--chmod=(-|+)x选项(“git add”的低级版本)来更改索引中的执行权限,如果您使用“git commit”(而不是“git commit -a ”)。

于 2009-10-16T22:03:24.293 回答
44

您可以全局配置它:

git config --global core.filemode false

如果上述方法对您不起作用,原因可能是您的本地配置覆盖了全局配置。

删除本地配置,使全局配置生效:

git config --unset core.filemode

或者,您可以将本地配置更改为正确的值:

git config core.filemode false

于 2015-01-21T09:12:25.527 回答
26

如果您已经使用过chmod命令然后检查文件的差异,它显示以前的文件模式和当前的文件模式,例如:

新模式:755

旧模式:644

使用以下命令设置所有文件的旧模式

sudo chmod 644 .

现在使用命令或手动在配置文件中将 core.fileMode 设置为 false。

git config core.fileMode false

然后应用 chmod 命令更改所有文件的权限,例如

sudo chmod 755 .

并再次将 core.fileMode 设置为 true。

git config core.fileMode true

对于最佳实践,不要始终保持 core.fileMode 为 false。

于 2015-10-13T07:34:57.597 回答
22

通过定义以下别名(在 ~/.gitconfig 中),您可以轻松地暂时禁用每个 git 命令的 fileMode:

[alias]
nfm = "!f(){ git -c core.fileMode=false $@; };f"

当此别名作为 git 命令的前缀时,文件模式更改将不会与原本会显示它们的命令一起显示。例如:

git nfm status
于 2015-07-24T15:01:35.293 回答
14

如果你想在配置文件中递归地设置 filemode 为 false (包括子模块): find -name config | xargs sed -i -e 's/filemode = true/filemode = false/'

于 2013-07-16T12:23:45.793 回答
7

简单的解决方案:

在项目文件夹中点击此简单命令(它不会删除您的原始更改) ...它只会删除您更改项目文件夹权限时所做的更改

命令如下:

git config core.fileMode false

为什么要修改所有不必要的文件: 因为您已使用推荐更改了项目文件夹权限 sudo chmod -R 777 ./yourProjectFolder

你什么时候会检查你没有做过的改变?您在使用git diff 文件名时发现如下

old mode 100644
new mode 100755
于 2018-03-19T13:13:57.230 回答
3

这对我有用:

find . -type f -exec chmod a-x {} \;

或反向,具体取决于您的操作系统

find . -type f -exec chmod a+x {} \;
于 2018-04-30T15:06:11.083 回答
2

这可能有效:git config core.fileMode false

于 2021-12-28T18:16:07.180 回答