You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Repository ctor has an optional argument RepositoryOptions. However, there's a couple of places that create new instances of Repository and don't allow us to pass in a RepositoryOptions.
Repository.Init and Repository.Clone. They probably should. In our case, we need to pass in a custom global git config file path everywhere we use Repository.
The text was updated successfully, but these errors were encountered:
Both of these are going to take some work in libgit2. I'm rounding up all the API-breaking changes over at libgit2/libgit2#1142; feel free to weigh in there.
The
Repository
ctor has an optional argumentRepositoryOptions
. However, there's a couple of places that create new instances ofRepository
and don't allow us to pass in aRepositoryOptions
.Repository.Init
andRepository.Clone
. They probably should. In our case, we need to pass in a custom global git config file path everywhere we useRepository
.The text was updated successfully, but these errors were encountered: