Git Product home page Git Product logo

Comments (6)

jhested avatar jhested commented on June 11, 2024

It seems like LibGit2Sharp is dependant on libssl 1.1 but Ubuntu 22.04 only comes with 3x

https://askubuntu.com/a/1483959

from libgit2sharp.

bording avatar bording commented on June 11, 2024

@jhested LibGit2Sharp 0.27.2 should work fine with Ubuntu 22.04 and OpenSSL 3. The version of libgit2 used in that release can dynamically use libssl.so.3.

We already run tests on Ubuntu 22.04 that pass without problems. I also just reconfirmed it with a test app that calls Repository.Clone with both an http and http url.

If you can provide some actual code for me to try that reproduces the problem you're seeing, I can look into it further, but right now I'm not seeing anything wrong.

from libgit2sharp.

jhested avatar jhested commented on June 11, 2024

Hi @bording ,

Thanks for your reply, here is the code I'm using to test

public GitClient(GitClientOptions config) 
{
    _config = config;

    CloneOptions co = new CloneOptions();            

    co.CredentialsProvider = (_url, _user, _cred) => new UsernamePasswordCredentials { Username = "x-access-token", Password = _config.PersonalAccessToken };

    _cloneOptions = co;
}

public string Clone(string url, string path, CancellationToken cancellationToken = default)
{
    return Repository.Clone(url, path, _cloneOptions);
}

FYI: I was able to get it working by manually installing openssl 1.1

from libgit2sharp.

bording avatar bording commented on June 11, 2024

@jhested I've now also tested cloning a repo that requires credentials, and everything is still working fine, no OpenSSL 1.1 required.

Are you sure you're using LibGit2Sharp 0.27.2?

At this point I think I would need to see a fully working sample that reproduces the problem you're having, because all signs point to it being something other than LibGit2Sharp at this point.

from libgit2sharp.

jhested avatar jhested commented on June 11, 2024

@bording Thanks for taking your time to investigate this. I can no longer reproduce the error, after installing OpenSSL 1.1 manually, so I will setup a clean WSL later and test it again.

Will get back with the results tonight

from libgit2sharp.

jhested avatar jhested commented on June 11, 2024

@bording I have tested this out on a coworkers machines, and it worked perfectly on his. I will close the issue

from libgit2sharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.