/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/GitCheckoutOptions.cs
36 строк
702 B
Saravanan G
Fix: Fixed crash when switching git branches during merge conflict (#17894)
03 дек 2025, 22:23
Не верифицирован
03 дек 2025, 22:23
ddeb2ff
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Defines constants that specify checkout operation type. /// </summary> public enum GitCheckoutOptions { /// <summary> /// Bring changes to the checking out branch. /// </summary> BringChanges, /// <summary> /// Stash changes to the checking out branch. /// </summary> StashChanges, /// <summary> /// Discard changes and check out to the branch. /// </summary> DiscardChanges, /// <summary> /// Abort merge and check out to the branch. /// </summary> AbortMerge, /// <summary> /// No operation to perform. /// </summary> None } }