fix CommandNotSupportedException for git outgoing command

This commit is contained in:
Sebastian Sdorra
2013-08-16 10:55:18 +02:00
parent bf4d5b4e83
commit 2841fa202b

View File

@@ -188,6 +188,18 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
return new GitLogCommand(context, repository);
}
/**
* Method description
*
*
* @return
*/
@Override
public OutgoingCommand getOutgoingCommand()
{
return new GitOutgoingCommand(handler, context, repository);
}
/**
* Method description
*