git分支可以有工作树吗?
所以我有一个我正在开发的网站的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
git clone /var/www/project ~/public_html
,然后签出所需的分支,并像往常一样使用git pull
和git push
。git clone /var/www/project ~/public_html
, then checkout the needed branch, and usegit pull
andgit push
as usual.