使用 Grit 创建存储库

发布于 2024-11-04 07:39:29 字数 58 浏览 2 评论 0原文

有没有办法使用 Grit 在存储库中创建分支?我似乎无法在文档中找到方法,也无法在网络上找到任何参考。

Is there a way to create a branch in a repo using Grit? I can't seem to find a way in the docs nor is there any reference I can find on the web.

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

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

发布评论

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

评论(1

老旧海报 2024-11-11 07:39:29

鉴于一些 Grit 已经退出,并且 Grit#method_missing显式地退出,看起来你可以这样做:

git.branch({},"branchname")
git.checkout({},"branchname") # If you like

设置 额外选项(视情况而定)。

Given that some of Grit shells out already, and that Grit#method_missing explicitly shells out, it looks like you could do:

git.branch({},"branchname")
git.checkout({},"branchname") # If you like

Set extra options as appropriate.

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