Esempio n. 1
0
        public async Task UnCommitAsync(Commit commit)
        {
            using (progress.ShowDialog($"Uncommitting in {commit} ..."))
            {
                R result = await gitCommitService.UnCommitAsync(CancellationToken.None);

                if (result.IsFaulted)
                {
                    message.ShowWarning($"Failed to uncommit.\n{result.Message}");
                }
            }
        }