是否可以使用 git 查看网站克隆的分支?

发布于 2024-12-08 10:10:59 字数 157 浏览 0 评论 0原文

我有一个网站的工作版本,它是位于我的 /home/dmaxwell/public_html 文件夹中的 DocumentRoot 的克隆。我想从我的工作克隆中分支出来并尝试一些不同的事情,但是,当我检查以查看任何进度时,主分支是浏览器显示的版本。有没有办法让浏览器显示实验分支,或者我只能使用主分支?

I have a working version of a website that is a clone of the DocumentRoot located in my /home/dmaxwell/public_html folder. I would like to branch off of my working clone and try some different things, however, when I go to check to see any progress the master branch is the version that the browser shows. Is there a way to get the browser to show the experimental branch or am I limited to only using the master branch?

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

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

发布评论

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

评论(3

梦行七里 2024-12-15 10:10:59

您的网站将显示签出的代码中存在的所有内容。如果你想查看分支,请查看:

 git checkout branch_name

Your website will show whatever is present in the code checked out. If you want to view the branch, check it out:

 git checkout branch_name
万劫不复 2024-12-15 10:10:59

您可以使用以下命令在分支之间切换来回和第四个

git checkout <branch>

you can switch back and fourth between branches using

git checkout <branch>
枕头说它不想醒 2024-12-15 10:10:59

您可以将您的分支“克隆”到同一 Web 服务器或不同 Web 服务器下的不同位置,并在那里查看它。这与 git 无关,更像是您的部署/基础设施。

You can "clone" your branch to a different location under the same web-server or under different web-server and see it there. This is not really git related more like what your deployment/infrastructure is.

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