通过网络驱动器的 Git 客户端

发布于 2024-09-16 06:47:21 字数 148 浏览 6 评论 0原文

如果我有一个带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所有深爱都是秘密 2024-09-23 06:47:21

从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文