Package org.eclipse.jgit.api
Class SubmoduleSyncCommand
- java.lang.Object
-
- org.eclipse.jgit.api.GitCommand<java.util.Map<java.lang.String,java.lang.String>>
-
- org.eclipse.jgit.api.SubmoduleSyncCommand
-
- All Implemented Interfaces:
java.util.concurrent.Callable<java.util.Map<java.lang.String,java.lang.String>>
public class SubmoduleSyncCommand extends GitCommand<java.util.Map<java.lang.String,java.lang.String>>
A class used to execute a submodule sync command. This will set the remote URL in a submodule's repository to the current value in the .gitmodules file.- See Also:
- Git documentation about submodules
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.api.GitCommand
repo
-
-
Constructor Summary
Constructors Constructor Description SubmoduleSyncCommand(Repository repo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubmoduleSyncCommand
addPath(java.lang.String path)
Add repository-relative submodule path to synchronizejava.util.Map<java.lang.String,java.lang.String>
call()
Executes the commandprotected java.lang.String
getHeadBranch(Repository subRepo)
Get branch that HEAD currently points to-
Methods inherited from class org.eclipse.jgit.api.GitCommand
checkCallable, getRepository, setCallable
-
-
-
-
Constructor Detail
-
SubmoduleSyncCommand
public SubmoduleSyncCommand(Repository repo)
- Parameters:
repo
-
-
-
Method Detail
-
addPath
public SubmoduleSyncCommand addPath(java.lang.String path)
Add repository-relative submodule path to synchronize- Parameters:
path
- (with/
as separator)- Returns:
- this command
-
getHeadBranch
protected java.lang.String getHeadBranch(Repository subRepo) throws java.io.IOException
Get branch that HEAD currently points to- Parameters:
subRepo
-- Returns:
- shortened branch name, null on failures
- Throws:
java.io.IOException
-
call
public java.util.Map<java.lang.String,java.lang.String> call() throws GitAPIException
Description copied from class:GitCommand
Executes the command- Specified by:
call
in interfacejava.util.concurrent.Callable<java.util.Map<java.lang.String,java.lang.String>>
- Specified by:
call
in classGitCommand<java.util.Map<java.lang.String,java.lang.String>>
- Returns:
- T a result. Each command has its own return type
- Throws:
GitAPIException
- or subclass thereof when an error occurs
-
-