Tagged Questions

8
votes
4answers
1k views

How to “cat” a file in JGit?

A while back I was looking for an embeddable distributed version control system in Java, and I think I have found it in JGit, which is a pure Java implementation of git. However, there is not much in ...
6
votes
1answer
236 views

Egit hooks do not get triggered

I have a git repo with a pre-commit hook that intentionally fails 100% of the time. cat .git/hooks/pre-commit > exit 1 If I try to commit through the command line, it fails as expected. ...
4
votes
4answers
370 views

How to write or package a Git server as a Java Servlet or Java webapp?

Git is clearly awesome and a variety of clients are both available and easy to install for all platforms. However it's a bit of a challenge to get a Git server up and running for teams. I'm a bit ...
4
votes
2answers
889 views

Where are Jgit javadocs?

I can't find javadocs for jgit. I tried to build jgit with maven, but the build fails so I ask for your help. Where I can find javadocs for jgit.
3
votes
3answers
277 views

JGit checkout vs `git checkout` problems

tl;dr JGit's checkout throws exceptions while command line git checkout works fine I'm currently trying to use JGit to check out certain revisions from an online Git repository, in Java (for work). ...
3
votes
3answers
883 views

Get a single file from a remote git repository

Is there a way to programmatically download a single file from a remote git repository, in Java? I prefer a solution which uses as little bandwidth as possible, preferably only downloading that ...
2
votes
2answers
454 views

git server on google app engine

Is it possible to setup a git server on google-app-engine for private repo? Can I only use http and not https? Are there limitations on single file upload which can limit pack files? From what I've ...
2
votes
0answers
225 views

calculating a git packfile sha1 checksum in java

I am learning about the Git packfile and currently trying to reproduce (in Java) what I believe to be the SHA1 20-byte checksum for the entire packfile. I take the byte array from, and including, the ...
1
vote
1answer
55 views

Git repository on S3 (as “origin”, not as backup)

I recently tried the S3 remote provider of JGit, which works like a charm. EDIT: Statement regarding transmission of whole repos removed, see comments. This does not change the main question I have ...
1
vote
1answer
51 views

Does jGit support any of the following?

I reviewed the documentation at the web site and searched their forums but the following are still unclear so I just need a bit more info. With jGit can I: Create new repositories add users / rsa ...
0
votes
3answers
47 views

Manipulating the output of GIT version control system from a Java program

I am invoking the Git executable from my Java program using the process builder class and running various git commands. Java program is being run from the command prompt. However, I'm not finding a ...
0
votes
1answer
55 views

How to respond to git clone command using NGIT

Using NGit (or even JGit since it's a port) does anyone know how to respond to the Git clone command over Smart HTTP? What would the sample code look like? I can't find any references or ...
0
votes
2answers
180 views

Committing and Pushing to GitHub using JGit - Bare Repo?

Today I signed up for github, and converted an existing filesystem into a git repo using the technique described here: ...
0
votes
1answer
70 views

JGit: Count objects

How can I retrieve the total number of git objects in a repository? (I search something like the git count-objects in JGit.) I made a Java program that calculates statistic values and has to read ...
0
votes
3answers
183 views

Is there a better database than Git (with serializable, immutable, versioned trees)?

Imagine the data structure behind Git. It's like a confluently persistent data structure, except using hash references instead of traditional pointers. I need Git's data structure, except without any ...
0
votes
1answer
389 views

jgit repository browser

I would like to create a git repository browser with jgit. But i don't know how to get the last modified date and the last commit message for a file. Here is my current code for the browser: File ...
0
votes
1answer
304 views

JGit Java Git Library Unstaging Files

I can't get reset to work properly in JGit. Ie. i can add all files to the index, and i can remove/reset/unstage some of them from the index via the command below but it doesn't work for all files. ...
-1
votes
1answer
34 views

Cloning remote repository using Java Api

Is there any option to clone remote repository to local system using api, We need an api to checkout a particular version of source file from remote repository. Does Jgit having option to checkout ...