如何使用 ngit(或 jgit)将现有存储库上的跟踪设置为远程存储库?
我正在开发一个基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是与
gitbranch
的--set-upstream
选项相对应的 Java 代码片段:Here is a Java snippet that corresponds to the
--set-upstream
option togit branch
: