Bug #2133
GitCR ignoring offline mode for initial clone
Start date:
30.12.2021
Due date:
% Done:
0%
Estimated time:
origin:
Description
Essentially, the following is missing in com.zfabrik.impl.gitcr.helper.GitCommand
:
public void doClone() {
if (Foundation.isOfflineMode()) {
logger.warning("GIT-CR: '" + this.originUri.getHumanishName() + "' will be ignored (Running offline)");
return;
}
...