如何使用 ngit(或 jgit)将现有存储库上的跟踪设置为远程存储库?

发布于 2024-11-27 01:38:04 字数 463 浏览 0 评论 0原文

我正在开发一个基于 gui 的帮助实用程序,它将:

  • 初始化本地存储库,初始化(裸)远程存储库
  • 基于项目类型添加 .gitignore
  • 本地提交所有文件
  • 将远程存储库添加到本地配置
  • 将 master 推送到远程repo
  • 创建一个开发分支并将其推送到 master

所有这一切都是通过使用 ngit (jgit 的 .NET 端口)在没有安装 git 的情况下完成的。

但我不知道如何设置跟踪来跟踪 master 到 origin/master 并仅使用 ngit 开发到 origin/develop。

我可以轻松地做到这一点

git branch --set-upstream master origin/master

,但是,我希望避免本地 git 安装的依赖。

I am working on a gui based helper utility that will:

  • Init a local repo, Init (bare) a remote repo
  • Add .gitignore based on a project type
  • Commit all the files locally
  • Add a remote repo to the local config
  • Push master to the remote repo
  • Create a develop branch and push it to master

All this is done without git installed by using ngit (.NET port of jgit).

But I can't figure out how to setup tracking to track master to origin/master and develop to origin/develop using just ngit.

I can do it easily with

git branch --set-upstream master origin/master

However, I was hoping to avoid the dependency of a local git install.

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

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

发布评论

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

评论(1

清欢 2024-12-04 01:38:04

以下是与 gitbranch--set-upstream 选项相对应的 Java 代码片段:

Git git = Git.open(new File("/home/repos/myrepo"));
CreateBranchCommand create = git.branchCreate();
create.setUpstreamMode(SetupUpstreamMode.SET_UPSTREAM);
create.setName("develop");
create.setStartPoint("origin/develop");
create.call();

Here is a Java snippet that corresponds to the --set-upstream option to git branch:

Git git = Git.open(new File("/home/repos/myrepo"));
CreateBranchCommand create = git.branchCreate();
create.setUpstreamMode(SetupUpstreamMode.SET_UPSTREAM);
create.setName("develop");
create.setStartPoint("origin/develop");
create.call();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文