org.eclipse.jgit.ant.tasks
Class GitCloneTask

java.lang.Object
  extended by org.apache.tools.ant.ProjectComponent
      extended by org.apache.tools.ant.Task
          extended by org.eclipse.jgit.ant.tasks.GitCloneTask
All Implemented Interfaces:
java.lang.Cloneable

public class GitCloneTask
extends org.apache.tools.ant.Task

Clone a repository into a new directory.

See Also:
git-clone(1)

Field Summary
 
Fields inherited from class org.apache.tools.ant.Task
target, taskName, taskType, wrapper
 
Fields inherited from class org.apache.tools.ant.ProjectComponent
description, location, project
 
Constructor Summary
GitCloneTask()
           
 
Method Summary
 void execute()
           
 void setBare(boolean bare)
           
 void setBranch(java.lang.String branch)
           
 void setDest(java.io.File destination)
          The optional directory associated with the clone operation.
 void setUri(java.lang.String uri)
           
 
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
 
Methods inherited from class org.apache.tools.ant.ProjectComponent
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GitCloneTask

public GitCloneTask()
Method Detail

setUri

public void setUri(java.lang.String uri)
Parameters:
uri - the uri to clone from

setDest

public void setDest(java.io.File destination)
The optional directory associated with the clone operation. If the directory isn't set, a name associated with the source uri will be used.

Parameters:
destination - the directory to clone to
See Also:
URIish.getHumanishName()

setBare

public void setBare(boolean bare)
Parameters:
bare - whether the cloned repository is bare or not

setBranch

public void setBranch(java.lang.String branch)
Parameters:
branch - the initial branch to check out when cloning the repository

execute

public void execute()
             throws org.apache.tools.ant.BuildException
Overrides:
execute in class org.apache.tools.ant.Task
Throws:
org.apache.tools.ant.BuildException


Copyright © 2011. All Rights Reserved.