git分支可以有工作树吗?

发布于 2024-10-30 18:10:15 字数 160 浏览 4 评论 0原文

所以我有一个我正在开发的网站的 git 存储库。主存储库的工作树为 /var/www/project/。 我想为自己和服务器上的其他用户创建分支。我想知道是否可以在分支上设置一个工作树以指向 /home/username/public_html/ ,以便他们可以在其主目录上工作并在需要时合并。 这可能吗?

So I have a git repository for a website I'm working on. The master repository has a worktree of /var/www/project/.
I want to create branches for myself and the other users on the server. I was wondering if I could set up a worktree on a branch to point to /home/username/public_html/ so they can work on their home directory and merge when needed.
Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

临风闻羌笛 2024-11-06 18:10:15

git clone /var/www/project ~/public_html,然后签出所需的分支,并像往常一样使用git pullgit push

git clone /var/www/project ~/public_html, then checkout the needed branch, and use git pull and git push as usual.

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