今天我注册了 github,并使用此处描述的技术将现有文件系统转换为 git repo:
最重要的是(我认为)它涉及到这条线:
git --bare init
然后我按照 github.com 的其余设置教程(这是其中的一部分)完成了。现有的文件系统在 Dropbox 中,所以我在另外两台使用该文件系统的机器(现在是一个 git repo)上执行了相同的设置。
今晚我试图让 JGit 添加一个文件,提交它然后推送它。这是代码的要点,直到它中断:
FileRepositoryBuilder builder = new FileRepositoryBuilder();
Repository repository = builder.setGitDir(new File("path/to/my/repo"))
.readEnvironment() // scan environment GIT_* variables
.findGitDir() // scan up the file system tree
.build();
Git git = new Git(repository);
AddCommand add = git.add();
try{
add.addFilepattern("PlayState.as").call();`
顺便说一句,这基本上是从 JGit 教程中逐字记录的。它在最后引用的行引发异常并声明:
org.eclipse.jgit.errors.NoWorkTreeException: Bare Repository has neither a working tree, nor an index
at org.eclipse.jgit.lib.Repository.getIndexFile(Repository.java:838)
at org.eclipse.jgit.lib.Repository.lockDirCache(Repository.java:886)
at org.eclipse.jgit.api.AddCommand.call(AddCommand.java:136)
at flipa.FLIPAGame.writeToFlixel(FLIPAGame.java:77)
at flipa.FLIPAGame.main(FLIPAGame.java:58)
现在,我并不是说这样说是不合理的,因为说实话我不是版本控制最好的朋友。我知道一个裸仓库是一个只有 git 而没有其他文件的仓库,但在我看来,现在它里面有文件。我已经使用终端中的 git 手动添加、提交并推送到 github。所以我不能立即明白为什么它甚至无法识别回购。
有接盘侠吗?
编辑 - 为了澄清起见,如果有人可以提出另一个解决方案,那么取消这个 repo 没什么大不了的。我想要一个 git repo 来使用我的 Dropbox 中的文件系统,并且能够通过 Java 提交到 github。