sourcegit/src/Views/ApplyStash.axaml.cs
leo 7089f29b85
refactor: re-implement git stash apply
* supports `--index` option
* add an option to drop selected stash after applying
* remove `Pop` context menu for stash

Signed-off-by: leo <longshuang@msn.cn>
2025-02-06 16:33:55 +08:00

13 lines
202 B
C#

using Avalonia.Controls;
namespace SourceGit.Views
{
public partial class ApplyStash : UserControl
{
public ApplyStash()
{
InitializeComponent();
}
}
}