mburtka
mburtka
> As mentioned in the [change log](https://github.com/libgit2/libgit2sharp/blob/master/CHANGES.md#additions), there were some breaking changes to `CloneOptions` as part of adding proxy support. > > `CredentialsProvider` can now be found on the `FetchOptions`...
> Ah, yes, I see, it was changed in November. In that case: > > ``` > var cloneOptions = new CloneOptions(); > cloneOptions.FetchOptions.CredentialsProvider = ... > ``` > >...
@bording would you be amenable to having a constructor with either a null guard using the `Ensure` class used elsewhere or a coalesce-assign? I new up my `FetchOptions` using a...