Using native git not jgit in Eclipse git? -


is there way configure egit use native (os) git , not jgit implementation? if not, there alternative git eclipse plugins?

edit #1 - should note, aws codecommit uses credential helper auth, .gitconfig:

[credential]     helper = !/usr/local/bin/aws --profile codecommitprofile codecommit credential-helper $@     usehttppath = true 

i'm guessing specific codecommit , not in jgit.

egit strictly uses jgit, java implementation of git.

the git plugin in aptana sudio3 seems embedded in product sources (github.com/aptana/studio3), uses native git.

there class jgit.transport.amazons3, illustrated in this question , this 1 (setting iam).

there interesting discussion in thread can offer clue patch:

having looked @ how jgit access s3 host, jgit tries access bucket using virtual hosted style requests - http://bucketname.s3.amazonaws.com/ - request style works fine buckets in standard zone, other regions s3 redirects http 307 redirect correct region.

it seems jgit not handle http 307 redirect correctly, , need implement behavior correctly handle redirects s3.


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -