gpt4 book ai didi

java - jGit - 如何将所有文件添加到暂存区

转载 作者:IT王子 更新时间:2023-10-29 01:30:14 25 4
gpt4 key购买 nike

我尝试了很多方法来使用 jGit 克隆一个 repo(它有效)。然后,我在存储库中写了一些存档,并尝试添加所有(a git add *git add -A 或类似的东西)..但它没有不工作。简单的文件不会添加到暂存区。

我的代码是这样的:

    FileRepositoryBuilder builder = new FileRepositoryBuilder();
Repository repository = builder.setGitDir(new File(folder))
.readEnvironment().findGitDir().setup().build();
CloneCommand clone = Git.cloneRepository();
clone.setBare(false).setCloneAllBranches(true);
clone.setDirectory(f).setURI("git@192.168.2.43:test.git");
try {
clone.call();
} catch (GitAPIException e) {
e.printStackTrace();
}
Files.write("testing it...", new File(folder + "/test2.txt"),
Charsets.UTF_8);
Git g = new Git(repository);
g.add().addFilepattern("*").call();

我做错了什么?谢谢。


尝试使用 addFilePattern(".") 时出现异常:

Exception in thread "main" org.eclipse.jgit.errors.NoWorkTreeException: Bare Repository has neither a working tree, nor an index
at org.eclipse.jgit.lib.Repository.getIndexFile(Repository.java:850)
at org.eclipse.jgit.dircache.DirCache.lock(DirCache.java:264)
at org.eclipse.jgit.lib.Repository.lockDirCache(Repository.java:906)
at org.eclipse.jgit.api.AddCommand.call(AddCommand.java:138)
at net.ciphersec.git.GitTests.main(GitTests.java:110)

最佳答案

调试它的一种简单方法是查看 AddCommandJGit repo 的测试:AddCommandTest.java

您会看到,为了添加所有文件,从未使用过模式“*”,但使用了“.”。
并且在名为... testAddWholeRepo() (!)的测试函数中使用

git.add().addFilepattern(".").call();

异常:

Exception in thread "main" org.eclipse.jgit.errors.NoWorkTreeException: 
Bare Repository has neither a working tree, nor an index

非常明确:您需要在非裸仓库中添加文件。

test method testCloneRepository()和自己克隆的比较一下,看看有没有区别。

关于java - jGit - 如何将所有文件添加到暂存区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12734760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com