Thomas Wolf

Results 117 comments of Thomas Wolf

This is a bug in JSch. The bitbucket.org server does not allow setting environment variables, and with protocol V2, one needs to set the environment variable GIT_PROTOCOL to "version=2". JSch...

BTW: I think we should have a new release 2.9.1 with only the fixes for Java 8 (SSHD-1281/SSHD-1285), with anything else in a later release. In particular new features should...

I'm currently [implementing this in JGit directly](https://git.eclipse.org/r/c/jgit/jgit/+/174955/9/org.eclipse.jgit.gpg.bc/src/org/eclipse/jgit/gpg/bc/internal/keys/KeyGrip.java). Looks like BC lacks a few OIDs and uses different curve parameters for curve25519 than libgcrypt.

Yes, this would be useful. 1. The file format is different. See [keyformat.txt](https://github.com/gpg/gnupg/blob/master/agent/keyformat.txt) The "Extended Private Key Format" is the default since gpg-agent 2.2.20. 2. Keys are encrypted using AES/OCB/NoPadding....

1. With a shallow clone, the commit that last touched a particular file (or file in a directory) may not be present, so timestamps may be wrong. 2. JGit has...

> tycho itself do not clone the repo but "Github Action" do it You could specify `fetch-depth: 0` to make the Github checkout action do a full clone. > ,...

That code tries to relativize to the current directory ("user.dir"). Why? 1. The current directory inside Eclipse (at least when run on Mac) is the directory where Eclipse is installed....

@lennartj > This seems to be Eclipse-related, implying that anyone with Eclipse IDE expertise... Not really Eclipse-related, just any out-of-tree build runs into this. > ... is welcome to supply...

BTW: #143 is also a good fix. (But using `String.startsWith()` to check for path prefixes is not good anyway; "/home/somebody/foo" should not be a path prefix of "/home/somebody/foobar". Which is...

@lennartj: is this plug-in still maintained? Would be good to have a new version published with the fixes for issues #123, #131, and #149. Once Patrick's fix for #131 (PR...