On 2024-12-12 at 09:14:50, Konrad Bucheli (PSI) wrote: > Dear git developers > > Below my bug report: > > What did you do before the bug happened? (Steps to reproduce your issue) > > I do a `git init .` on a directory which is CIFS mounted via gio mount > (FUSE). > On RHEL8 this needs gvfs-smb and gvfs-fuse installed. > Mount command: gio mount smb://fs01.psi.ch/my_user_name$ In general, gvfs's FUSE driver isn't a good way to interact with files. My experience with its SFTP driver is that it has a bunch of weird, non-Unixy behaviour that's due to limitations in the gio interface. So it probably doesn't provide the functionality most Unix programs will expect from a file system, which will cause you a world of problems down the line, as you've seen here. > What did you expect to happen? (Expected behavior) > > It initializes the git repo. > > What happened instead? (Actual behavior) > > $ git init . > error: chmod on /run/user/44951/gvfs/smb-share:server=fs01.psi.ch,share=my_user_name$/git/foo/.git/config.lock > failed: Operation not supported > fatal: could not set 'core.filemode' to 'false' > $ This is indeed the case, since the chmod on the config file fails. We always rewrite the config file as a separate lock file, and then rename into place. (This prevents concurrent modification correctly even on network file systems.) The user generally wants the permissions to be preserved, so this is the safe default. This also happens when using a Linux Git on a WSL Windows mount. Note that even Windows honours the read-only/read-write difference for files, so in theory chmod is useful even on CIFS and other Windows file systems. If I remember correctly, the consensus last time this came up was that someone is welcome to add a config option that ignores the chmod failure, but that in general, we don't want to just silently ignore it. Unfortunately, nobody has added such a configuration option yet. I will note that the `mount.cifs(8)` manual page[0] indicates that the Linux kernel CIFS driver _does_ silently ignore chmod operations when the server doesn't support them, but it also supports using and storing Unix permissions if the server does, so that may be a workaround. [0] https://linux.die.net/man/8/mount.cifs -- brian m. carlson (they/them or he/him) Toronto, Ontario, CA
Attachment:
signature.asc
Description: PGP signature