通过网络驱动器的 Git 客户端
如果我有一个带有 git repo checkout 的网络驱动器,例如,Windows 计算机 (A) 上的 samba 驱动器连接到本地结帐所在的 Linux 计算机 (B)。有没有办法让 A 上的客户端(可以看到驱动器)通过 B 上定义的 ssh 访问权限执行 git 操作?
If I have a network drive with a git repo checkout, for example, samba drive on a windows machine (A) connected to Linux machine (B) where the local checkout is. Is there a way for clients on A - who can see the drive - to do git operations through the the ssh access defined on B?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 git 的角度来看,存储库所在的文件系统应该不会产生太大的影响。 Git 只是将数据存储在目录结构中,并且在目录树的根部中有 .git-dir 来保存数据(您可以将其配置在其他地方,但这是一个不同的故事)。
因此,对存储库的访问仅由系统级访问配置详细信息定义。 A 上有权访问该目录的任何人都可以查看该存储库。如果他有写访问权限,他还可以执行诸如提交到存储库之类的操作。 B 也是如此,因此每个可以在该目录中执行操作的用户也可以对存储库进行修改。 SSH 访问或本地 shell 在此设置中没有影响。
The filesystem on which the repository resides, should not make a big difference, from the perspective of git. Git just stores the data inside the directory structure, and in the root of the directory tree there is the .git-dir to keep the data (You can configure it to be elsewhere, but that's a different story).
So access to the repository is only defined by system level access configuration details. Anyone on A, who has access to the directory can see the repository. If he has write access, he can also do operations like commits into the repo. The same goes for B, so every user who can do stuff in the dir, can also make modifications to the repository. SSH-access or local shell doesn't make a difference in this setup.