org.eclipse.jgit.api
Class SubmoduleUpdateCommand
java.lang.Object
org.eclipse.jgit.api.GitCommand<T>
org.eclipse.jgit.api.TransportCommand<SubmoduleUpdateCommand,Collection<String>>
org.eclipse.jgit.api.SubmoduleUpdateCommand
- All Implemented Interfaces:
- Callable<Collection<String>>
public class SubmoduleUpdateCommand
- extends TransportCommand<SubmoduleUpdateCommand,Collection<String>>
A class used to execute a submodule update command.
- See Also:
- Git documentation about submodules
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SubmoduleUpdateCommand
public SubmoduleUpdateCommand(Repository repo)
- Parameters:
repo
-
setProgressMonitor
public SubmoduleUpdateCommand setProgressMonitor(ProgressMonitor monitor)
- The progress monitor associated with the clone operation. By default,
this is set to
NullProgressMonitor
- Parameters:
monitor
-
- Returns:
- this command
- See Also:
NullProgressMonitor
addPath
public SubmoduleUpdateCommand addPath(String path)
- Add repository-relative submodule path to initialize
- Parameters:
path
-
- Returns:
- this command
call
public Collection<String> call()
throws InvalidConfigurationException,
NoHeadException,
ConcurrentRefUpdateException,
CheckoutConflictException,
InvalidMergeHeadsException,
WrongRepositoryStateException,
NoMessageException,
NoHeadException,
RefNotFoundException,
GitAPIException
- Execute the SubmoduleUpdateCommand command.
- Specified by:
call
in interface Callable<Collection<String>>
- Specified by:
call
in class GitCommand<Collection<String>>
- Returns:
- a collection of updated submodule paths
- Throws:
ConcurrentRefUpdateException
CheckoutConflictException
InvalidMergeHeadsException
InvalidConfigurationException
NoHeadException
NoMessageException
RefNotFoundException
WrongRepositoryStateException
GitAPIException
Copyright © 2012. All Rights Reserved.