如何将分支添加到 gitosis 中的存储库

发布于 2024-10-07 06:19:11 字数 172 浏览 2 评论 0原文

我已经在我的机器上成功设置了 gitosis,并且我的项目安全地保存在 gitosis 服务器上。它目前没有分支(只有主分支)。如何向其添加分支? (我不是在谈论它的配置,我可以弄清楚,而是字面上添加一个分支)

我是否在本地存储库中添加一个分支并推送? 我在 gitosis 中做些什么吗?

干杯。

I have successfully setup gitosis on my machine and I have my project safely on the gitosis server. It currently has no branches (just master). How do I add a branch to it? (I am not talking about the config of it, I can figure that out, but literally adding a branch)

Do I add a branch in my local repo and push?
Do I do something in gitosis?

Cheers.

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

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

发布评论

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

评论(1

眼睛会笑 2024-10-14 06:19:11

您使用以下命令创建本地分支,

git branch branch_name

然后告诉远程您有一个新分支:

git push origin branch_name

You create a local branch with:

git branch branch_name

and then you tell the remote you have a new branch with:

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