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 ...
5
votes
3answers
2k views

Confusion in choosing between JavaGit, JGit and EGit

I am making a Java application that uses Git. I found that there is something called JavaGit, EGit and JGit. I know that JavaGit and EGit/JGit are different. What I don't understand is the difference ...
4
votes
4answers
364 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
881 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
274 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
811 views

Looping over commits for a file with jGit

I've managed to get to grips with the basics of jGit file in terms of connecting to a repos and adding, commiting, and even looping of the commit messages for the files. File gitDir = new ...
3
votes
3answers
874 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 ...
1
vote
1answer
193 views

Java git client using jgit

I am having some difficulties with a git client written in java. I am using the jGit library to connect through ssh on the git server. The problem is that i don't know how to specify the path to the ...
0
votes
3answers
46 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
57 views

How do I do the equivalent of “git diff --name-status” with jgit?

I want to get a list of changed/added/deleted files between revision XXXXXX and HEAD. This is what I have so far: String oldHash = "a97e5553e37a25bd1a3c99eab303145baed08dbd"; Git git = Git.open(new ...
0
votes
2answers
177 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
1answer
385 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
136 views

JGit/EGit Loading of translation bundle failed en_US

I am running the following code in a JUnit test to test fetching a git repository. I'm writing a test for each of the basic functionality i need from JGit so that then i can implement them in my ...
0
votes
1answer
303 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. ...