Question

How can I use Xcode with a JGit repository instead of a Git repository? The checkout dialog offers only the types “Git” and “Subversion”.

If I try to open a JGit repository as a traditional Git type, the error message says “fatal: Unable to find remote helper“.

Xcode's checkout dialog

Was it helpful?

Solution

Xcode doesn't directly support a repo stored on S3 (it's something unique to JGit).

That said, you should be able to access a repo there by using a combination of FUSE for OS X and s3fs. You will need to install FUSE (which allows the use of filesystems from userland) and then s3fs (to mount the S3 bucket) and then mount the bucket containing the repo somewhere on your local filesystem. Once that's done, you'll be able to reference it using the local filesystem mountpoint.

OTHER TIPS

JGit is just a Jave interface to work with Git repositories, so there is no Jgit-Repository. Git repositories can be handled with Git or JGit, the resulting repository is identical.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top