19

我在玩 JGit,我可以成功地从某个存储库(git remote rm origin)中删除一个遥控器,我该怎么做git remote add origin http://github.com/user/repo

要删除,我执行以下操作:

StoredConfig config = git.getRepository().getConfig();
config.unsetSection("remote", "origin");
config.save();

但是没有像#setSection(String, String).

提前致谢。

4

3 回答 3

34

管理它以这种方式工作:

Git git = new Git(localRepository);
StoredConfig config = git.getRepository().getConfig();
config.setString("remote", "origin", "url", "http://github.com/user/repo");
config.save();

显然它就像一个老板。

于 2012-10-09T13:37:27.290 回答
1

有一些类可以添加新的类:

    RemoteAddCommand remoteAddCommand = git.remoteAdd();
    remoteAddCommand.setName("origin");
    remoteAddCommand.setUri(new URIish("http://github.com/user/repo"));
    remoteAddCommand.call();

也有一个RemoteSetUrlCommand

于 2017-12-27T06:51:42.023 回答
0

您可以使用git24j直接操作远程对象

Repository repo = Repository.open("your-repository");
Remote upstream = Remote.create(repo, "upstream", URI.create("http://github.com/user/repo"));

当然,您也可以通过 git-config API 做同样的事情:

Config cfg = Config.openOndisk("my-git.config");
cfg.setString("remote.url", "http://github.com/user/repo");
于 2020-09-15T05:21:02.013 回答