/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/GitOperationResult.cs
31 строка
635 B
yair100
Feature: Improved messaging when failing to pull from Git (#18760)
22 июл 2026, 01:07
Не верифицирован
22 июл 2026, 01:07
c4a4ff9
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Defines constants that specify git operation result. /// </summary> public enum GitOperationResult { /// <summary> /// Operation completed successfully. /// </summary> Success, /// <summary> /// Operation failed due to an authorization error. /// </summary> AuthorizationError, /// <summary> /// Operation failed because uncommitted changes would be overwritten. /// </summary> UncommittedChangesError, /// <summary> /// Operation failed. /// </summary> GenericError } }