git tips: 设置filemode,避免NTFS文件权限变更引起的修改

如果你也和我一样,使用双(甚至是多)系统。平时使用Linux来进行工作。偶尔使用Windows进行娱乐。那就会有文件共享的问题。

我把数据盘格式化为NTFS格式。以方便在Linux和Window系统之间进行数据共享。在使用GIT工作时,有时候就发现,新Clone下来的项目,在没有做任何修改的前提下,git status命令提示几乎所有文件都有修改。这就造成无法进行后续的git pull更新操作。使用git pull -f参数也没有。

如下图所示:

$ git status
    modified:   service-loadbalancer/test-samples/TestDefaultCustomAlgorithm.cfg
    modified:   service-loadbalancer/test-samples/TestServiceAffinity.cfg
    modified:   service-loadbalancer/test-samples/TestServiceAffinityWithCookies.cfg
    modified:   service-loadbalancer/test-samples/TestSvcCustomAlgorithm.cfg
    modified:   service-loadbalancer/test-samples/TestSyslog.cfg
    modified:   service-loadbalancer/test-samples/loadbalancer_test.json
    modified:   test-utils/.gitignore
    modified:   test-utils/README.md
    modified:   test-utils/utils/utils.go
...
...
$ git diff test-utils/utils/utils.go
diff --git a/test-utils/utils/utils.go b/test-utils/utils/utils.go
old mode 100644
new mode 100755

原始文件并没有修改,只是文件的权限被修改了。原因是NTFS没有Linux下丰富的权限设置。clone下来的文件都被设置成了所有人员可读写。

$ ll test-utils/utils/utils.go 
-rwxrwxrwx 1 root root 3597 Apr  7 09:23 test-utils/utils/utils.go

而且通过chmod修改权限也不会生效。

$ chmod 644 test-utils/utils/utils.go 
$ ll test-utils/utils/utils.go 
-rwxrwxrwx 1 root root 3597 Apr  7 09:23 test-utils/utils/utils.go

总不能把文件系统重新格式化了再用吧 :-(

既然是文件权限的问题,而且文件只是权限发生了变化。那git有没有可以忽略这种权限变化的选项呢?

答案当然是YES

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 an non-executable file with executable bit on. [git-clone(1)]
    (https://www.kernel.org/pub/software/scm/git/docs/git-clone.html) or [git-init(1)]
    (https://www.kernel.org/pub/software/scm/git/docs/git-init.html) 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)]
    (https://www.kernel.org/pub/software/scm/git/docs/git-update-index.html).

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

通过在仓库中设置filemode为false。就可以解决问题:


$ git config  core.filemode false
$ git st
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean

或者,如果你嫌麻烦,也可以把这个设置配置到全局配置中。

$ git config --global core.filemode false

不过要注意,设置全局的配置有一点点安全风险性。如果某个文件被错误的配置了可执行权限,或者某些文件的可读写权限没有适当的配置。则在Linux系统下程序被安装后,可能会引起错误。原代码之类的,问题还不大。对于脚本、二进制程序权限还是明确配置了比较好。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,828评论 19 139
  • Ubuntu的发音 Ubuntu,源于非洲祖鲁人和科萨人的语言,发作 oo-boon-too 的音。了解发音是有意...
    萤火虫de梦阅读 99,988评论 9 468
  • 晚上真的不能太晚睡的,毕竟第二天又要上班8吓死,笔写下来穿过年哦在哪个亲发了是好~~ 人体器官时间工作表--百度 ...
    考拉NANA阅读 2,087评论 0 0
  • 人生都要遇见四个人,第一个是你爱但不爱你的人,第二个是爱你但你不爱的人,第三个是你爱又爱你但最后不能在一起的人,第...
    五木先生努力阅读 3,008评论 4 2
  • ——易蔺 艺术是什么?艺术是抒发自己心灵情感的油彩;艺术是唱出亿万人脑...
    CASTLEROCE易蔺阅读 1,477评论 0 0

友情链接更多精彩内容