Tagged Questions

JGit is an EDL (new-style BSD) licensed, lightweight, pure Java library implementing the Git version control system.

learn more… | top users | synonyms

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
230 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. ...
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
363 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
880 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
273 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
0answers
272 views

JGit: Cannot find a tutorial or simple example

I cannot find just one working tutorial for JGit. It would be very helpful if anyone has a good link or a simple example (f.ex. cat-a-file) that works (The answer from How to "cat" a file ...
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 ...
2
votes
2answers
183 views

How to use jGIT with Maven

i'm new to GIT and want to use jGIT to create repository and remove it beside other operations from a Java maven project. and i want to know what dependencies needed for that. the following link what ...
2
votes
2answers
443 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
224 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
49 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 ...
1
vote
1answer
139 views

JGit clone repository

I'm trying to clone Git repository with JGit and I have problem with UnsupportedCredentialItem. My code: FileRepositoryBuilder builder = new FileRepositoryBuilder(); Repository repository = ...
1
vote
1answer
190 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
0answers
10 views

JGit retrieve branch on which a commitID was made

When I checkout from a commitID, git goes into a NO_BRANCH detached state. So the JGit APi which I use to get the branch name is returning the commit. So I need to a way, in JGit API, to find 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
0answers
45 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 ...
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
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
176 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
2answers
59 views

How to create a listener for Git events through the EGit/JGit plug-in?

I have been using the Subclipse API to create a plug-in for Eclipse that listens for Subversion events that happen through the Subclipse plug-in. I am basically implementing a listener interface that ...
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
77 views

JGit: Retrieve tag associated with a git commit

I want to use JGit API to retrieve the tags associated with a specific commit hash (if there is any)? please provide code snippet for the same Regards Kamal
0
votes
3answers
179 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
56 views

How to set tracking on an existing repo to a remote repo with ngit (or jgit)?

I am working on a gui based helper utility that will: Init a local repo, Init (bare) a remote repo Add .gitignore based on a project type Commit all the files locally Add a remote repo to the local ...
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
232 views

JGit commit problem on Android

I am trying to use the JGit library to synch documents on my android phone to a server. It almost works... but I can not get the commit to work. Whenever I try a commit I get an exception "data ...
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
302 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. ...
0
votes
1answer
176 views

JGit unstaging files/removing files from the index and ammending a commit

I figured out how to do a lot of things in the JGit library, such as commit files, find out the status of all files (ie. changed, modified, untracked etc), but i can't figure out how to unstage files ...
-1
votes
1answer
32 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 ...