UBNZ7UMTO3STTE3U7XOQNBJMFILGLJ6AO26IFMOR6D7QQXDCVDKQC
await repository.resetAll();
await repository.refreshStatus();
const message = `Are you sure you want to reset ${this.repository.changedGroup.resourceStates.length} file(s) to their last recorded state? Any changes will be lost forever.`;
const yes = 'Continue';
const pick = await window.showWarningMessage(message, { modal: true }, yes);
if (pick === yes) {
await repository.resetAll();
await repository.refreshStatus();
}