Ver código fonte

Merge "Update FetchCommand with dry run and thin options"

tags/v0.10.1
Chris Aniszczyk 13 anos atrás
pai
commit
153c796bce

+ 46
- 0
org.eclipse.jgit/src/org/eclipse/jgit/api/FetchCommand.java Ver arquivo

@@ -80,6 +80,10 @@ public class FetchCommand extends GitCommand<FetchResult> {

private boolean removeDeletedRefs;

private boolean dryRun;

private boolean thin = Transport.DEFAULT_FETCH_THIN;

private int timeout;


@@ -115,6 +119,8 @@ public class FetchCommand extends GitCommand<FetchResult> {
transport.setCheckFetchedObjects(checkFetchedObjects);
transport.setRemoveDeletedRefs(removeDeletedRefs);
transport.setTimeout(timeout);
transport.setDryRun(dryRun);
transport.setFetchThin(thin);

try {
FetchResult result = transport.fetch(monitor, refSpecs);
@@ -272,4 +278,44 @@ public class FetchCommand extends GitCommand<FetchResult> {
return this;
}

/**
* @return the dry run preference for the fetch operation
*/
public boolean isDryRun() {
return dryRun;
}

/**
* Sets whether the fetch operation should be a dry run
*
* @param dryRun
* @return {@code this}
*/
public FetchCommand setDryRun(boolean dryRun) {
checkCallable();
this.dryRun = dryRun;
return this;
}

/**
* @return the thin-pack preference for fetch operation
*/
public boolean isThin() {
return thin;
}

/**
* Sets the thin-pack preference for fetch operation.
*
* Default setting is Transport.DEFAULT_FETCH_THIN
*
* @param thin
* @return {@code this}
*/
public FetchCommand setThin(boolean thin) {
checkCallable();
this.thin = thin;
return this;
}

}

Carregando…
Cancelar
Salvar