Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,9 @@ protected CreateSiteRequest.RemoteSource getCreateFromRemoteRequest(CreateSiteFr
createFromRemoteRequest.setRemoteName(request.getRemoteName());
createFromRemoteRequest.setRemoteBranch(plugin.getRef());
createFromRemoteRequest.setAuthentication(NONE);
// The remoteBranch is set to the plugin ref, which actually seems to be a tag. That would
// fail since there is no branch like refs/heads/<tag>. So we are cloning all branches (which will bring the tags as well)
createFromRemoteRequest.setSingleBranch(false);
return createFromRemoteRequest;
}

Expand Down