Top "Jgit" questions

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

Checkout conflict with files. How do I proceed?

I just pulled some changes from a remote repository holding my teams project. This is the message I received on …

java eclipse egit jgit vcs-checkout
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. …

java eclipse egit jgit
Teamcity to github List remote refs failed not authorized jgit

Using github for windows on same machine, with same credentials works fine. Can pull/clone. However teamcity installed as a …

git github teamcity jgit
How do I do git push with JGit?

I'm trying to build a Java application that allows users to use Git based repositories. I was able to do …

git jgit
JGit: Checkout a remote branch

I'm using JGit to checkout a remote tracking branch. Git binrepository = cloneCmd.call() CheckoutCommand checkoutCmd = binrepository.checkout(); checkoutCmd.setName( "origin/" + …

git jgit
JGit: How to get all commits of a branch? (Without changes to the working directory ...)

how do I get all commits of a branch with JGit, without changing the working directory? Unfortunately the JGit docs …

java jgit
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 clone jgit
Why is not recommended to have an Eclipse project folder as a Git repository?

When sharing a project as git and trying to make the Eclipse project folder as the git repository, Eclipse says …

eclipse git egit jgit
Using Keys with JGit to Access a Git Repository Securely

I'm using JGit to access a remote Git repo, and I need to use SSH for it. JGit uses JSch …

java git ssh jsch jgit
Specifying SSH key for JGit

I'm wondering how I can use jgit to connect to github using a specified ssh key file (i.e. one …

java git ssh jsch jgit