Try and handle "Invalid ref name: origin/master" (how does this happen?)

This commit is contained in:
md_5 2018-12-18 17:04:10 +11:00
parent 22a271cf0f
commit 5c6ac9f467

View file

@ -64,6 +64,7 @@ import org.apache.commons.io.output.TeeOutputStream;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.ResetCommand;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.api.errors.JGitInternalException;
import org.eclipse.jgit.lib.StoredConfig;
import org.eclipse.jgit.revwalk.RevCommit;
@ -639,7 +640,14 @@ public class Builder
{
System.out.println( "Pulling updates for " + repo.getRepository().getDirectory() );
try
{
repo.reset().setRef( "origin/master" ).setMode( ResetCommand.ResetType.HARD ).call();
} catch ( JGitInternalException ex )
{
System.err.println( "*** Warning, could not find origin/master ref, but continuing anyway." );
System.err.println( "*** If further errors occur please delete " + repo.getRepository().getDirectory().getParent() + " and retry." );
}
repo.fetch().call();
System.out.println( "Successfully fetched updates!" );