删除由 gitosis 托管的分支

发布于 2024-08-19 13:41:32 字数 187 浏览 7 评论 0原文

我有一个使用 gitosis 托管在我的服务器上的 git 存储库。我有分支 master 和 template,我将模板分支重命名为开发,并将开发分支推送到 gitosis 存储库,该存储库创建了一个名为开发的新分支,但是如果我查看 gitosis 存储库的 repo_dir/refs/heads 目录,则模板分支仍然存在,我怎样才能从仓库中删除这个分支?

I have a git repo hosted on my server using gitosis. I had branches master and template, I renamed the template branch to develop and pushed the develop branch to the gitosis repo which created a new branch named develop, but if I look in the repo_dir/refs/heads dir of my gitosis repo the template branch is still there, how can I remove this branch from the repo?

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

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

发布评论

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

评论(1

青衫负雪 2024-08-26 13:41:32

我不知道 gitosis,但我不明白为什么它会有所不同

$ git push origin :template

上面的命令将从您的源中删除分支。

I don't know gitosis but I don't see why it would be any different

$ git push origin :template

The above command will delete the branch from your origin.

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