Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] LFS

Thanks! 

On Sun, Mar 4, 2018 at 1:28 PM Matthias Sohn <matthias.sohn@xxxxxxxxx> wrote:
On Sun, Mar 4, 2018 at 12:04 PM, Mark Waite <mark.earl.waite@xxxxxxxxx> wrote:
Markus,

I've been following the latest changes in JGit 4.11.0-SNAPSHOT.  It now includes LFS changes.

I was a little surprised that InstallLfsCommand.setRepository() is not returning "this".  That makes it so I cannot use:

    InstallLfsCommand cmd = new InstallLfsCommand();
    cmd.setRepository(repo).call();

Instead, I need to use:

    InstallLfsCommand cmd = new InstallLfsCommand();
    cmd.setRepository(repo);
    cmd..call();

Is that expected?

pushed
for review to fix this

-Matthias 

Back to the top