mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00

* rename Models.ExternalMergeTools to Models.ExternalMerger * supports Git Bash/PowerShell/Command Prompt/Default Shell in Windows Terminal
10 lines
171 B
C#
10 lines
171 B
C#
namespace SourceGit.Models
|
|
{
|
|
public enum Shell
|
|
{
|
|
Default = 0,
|
|
PowerShell,
|
|
CommandPrompt,
|
|
DefaultShellOfWindowsTerminal,
|
|
}
|
|
}
|