using System; using System.Collections.Generic; using System.IO; using System.Text.Json; using System.Threading.Tasks; using Avalonia.Collections; using Avalonia.Controls; using Avalonia.Media; using Avalonia.Media.Imaging; using Avalonia.Threading; using CommunityToolkit.Mvvm.ComponentModel; namespace SourceGit.ViewModels { public class Repository : ObservableObject, Models.IRepository { public string FullPath { get => _fullpath; set { if (value != null) { var normalized = value.Replace('\\', '/'); SetProperty(ref _fullpath, normalized); } else { SetProperty(ref _fullpath, null); } } } public string GitDir { get => _gitDir; set => SetProperty(ref _gitDir, value); } public Models.RepositorySettings Settings { get => _settings; } public int SelectedViewIndex { get => _selectedViewIndex; set { if (SetProperty(ref _selectedViewIndex, value)) { switch (value) { case 1: SelectedView = _workingCopy; break; case 2: SelectedView = _stashesPage; break; default: SelectedView = _histories; break; } } } } public object SelectedView { get => _selectedView; set => SetProperty(ref _selectedView, value); } public bool EnableFirstParentInHistories { get => _enableFirstParentInHistories; set { if (SetProperty(ref _enableFirstParentInHistories, value)) Task.Run(RefreshCommits); } } public string SearchBranchFilter { get => _searchBranchFilter; set { if (SetProperty(ref _searchBranchFilter, value)) { var builder = BuildBranchTree(_branches, _remotes); LocalBranchTrees = builder.Locals; RemoteBranchTrees = builder.Remotes; VisibleTags = BuildVisibleTags(); } } } public List Remotes { get => _remotes; private set => SetProperty(ref _remotes, value); } public List Branches { get => _branches; private set => SetProperty(ref _branches, value); } public Models.Branch CurrentBranch { get => _currentBranch; private set => SetProperty(ref _currentBranch, value); } public List LocalBranchTrees { get => _localBranchTrees; private set => SetProperty(ref _localBranchTrees, value); } public List RemoteBranchTrees { get => _remoteBranchTrees; private set => SetProperty(ref _remoteBranchTrees, value); } public List Worktrees { get => _worktrees; private set => SetProperty(ref _worktrees, value); } public List Tags { get => _tags; private set => SetProperty(ref _tags, value); } public List VisibleTags { get => _visibleTags; private set => SetProperty(ref _visibleTags, value); } public List Submodules { get => _submodules; private set => SetProperty(ref _submodules, value); } public int LocalChangesCount { get => _localChangesCount; private set => SetProperty(ref _localChangesCount, value); } public int StashesCount { get => _stashesCount; private set => SetProperty(ref _stashesCount, value); } public bool IncludeUntracked { get => _includeUntracked; set { if (SetProperty(ref _includeUntracked, value)) Task.Run(RefreshWorkingCopyChanges); } } public bool IsSearching { get => _isSearching; set { if (SetProperty(ref _isSearching, value)) { SearchedCommits = new List(); SearchCommitFilter = string.Empty; SearchCommitFilterSuggestion.Clear(); IsSearchCommitSuggestionOpen = false; _revisionFiles.Clear(); if (value) { SelectedViewIndex = 0; UpdateCurrentRevisionFilesForSearchSuggestion(); } } } } public bool IsSearchLoadingVisible { get => _isSearchLoadingVisible; private set => SetProperty(ref _isSearchLoadingVisible, value); } public int SearchCommitFilterType { get => _searchCommitFilterType; set { if (SetProperty(ref _searchCommitFilterType, value)) UpdateCurrentRevisionFilesForSearchSuggestion(); } } public string SearchCommitFilter { get => _searchCommitFilter; set { if (SetProperty(ref _searchCommitFilter, value) && _searchCommitFilterType == 3 && !string.IsNullOrEmpty(value) && value.Length >= 2 && _revisionFiles.Count > 0) { var suggestion = new List(); foreach (var file in _revisionFiles) { if (file.Contains(value, StringComparison.OrdinalIgnoreCase) && file.Length != value.Length) { suggestion.Add(file); if (suggestion.Count > 100) break; } } SearchCommitFilterSuggestion.Clear(); SearchCommitFilterSuggestion.AddRange(suggestion); IsSearchCommitSuggestionOpen = SearchCommitFilterSuggestion.Count > 0; } else if (SearchCommitFilterSuggestion.Count > 0) { SearchCommitFilterSuggestion.Clear(); IsSearchCommitSuggestionOpen = false; } } } public bool IsSearchCommitSuggestionOpen { get => _isSearchCommitSuggestionOpen; set => SetProperty(ref _isSearchCommitSuggestionOpen, value); } public AvaloniaList SearchCommitFilterSuggestion { get; private set; } = new AvaloniaList(); public List SearchedCommits { get => _searchedCommits; set => SetProperty(ref _searchedCommits, value); } public bool IsLocalBranchGroupExpanded { get => _isLocalBranchGroupExpanded; set => SetProperty(ref _isLocalBranchGroupExpanded, value); } public bool IsRemoteGroupExpanded { get => _isRemoteGroupExpanded; set => SetProperty(ref _isRemoteGroupExpanded, value); } public bool IsTagGroupExpanded { get => _isTagGroupExpanded; set => SetProperty(ref _isTagGroupExpanded, value); } public bool IsSubmoduleGroupExpanded { get => _isSubmoduleGroupExpanded; set => SetProperty(ref _isSubmoduleGroupExpanded, value); } public bool IsWorktreeGroupExpanded { get => _isWorktreeGroupExpanded; set => SetProperty(ref _isWorktreeGroupExpanded, value); } public InProgressContext InProgressContext { get => _inProgressContext; private set => SetProperty(ref _inProgressContext, value); } public bool HasUnsolvedConflicts { get => _hasUnsolvedConflicts; private set => SetProperty(ref _hasUnsolvedConflicts, value); } public Models.Commit SearchResultSelectedCommit { get => _searchResultSelectedCommit; set { if (SetProperty(ref _searchResultSelectedCommit, value) && value != null) NavigateToCommit(value.SHA); } } public void Open() { var settingsFile = Path.Combine(_gitDir, "sourcegit.settings"); if (File.Exists(settingsFile)) { try { _settings = JsonSerializer.Deserialize(File.ReadAllText(settingsFile), JsonCodeGen.Default.RepositorySettings); } catch { _settings = new Models.RepositorySettings(); } } else { _settings = new Models.RepositorySettings(); } try { _watcher = new Models.Watcher(this); } catch (Exception ex) { App.RaiseException(string.Empty, $"Failed to start watcher for repository: '{_fullpath}'. You may need to press 'F5' to refresh repository manually!\n\nReason: {ex.Message}"); } _histories = new Histories(this); _workingCopy = new WorkingCopy(this); _stashesPage = new StashesPage(this); _selectedView = _histories; _selectedViewIndex = 0; _inProgressContext = null; _hasUnsolvedConflicts = false; RefreshAll(); } public void Close() { SelectedView = null; // Do NOT modify. Used to remove exists widgets for GC.Collect var settingsSerialized = JsonSerializer.Serialize(_settings, JsonCodeGen.Default.RepositorySettings); try { File.WriteAllText(Path.Combine(_gitDir, "sourcegit.settings"), settingsSerialized); } catch (DirectoryNotFoundException) { // Ignore } _settings = null; _watcher?.Dispose(); _histories.Cleanup(); _workingCopy.Cleanup(); _stashesPage.Cleanup(); _watcher = null; _histories = null; _workingCopy = null; _stashesPage = null; _inProgressContext = null; _localChangesCount = 0; _stashesCount = 0; _remotes.Clear(); _branches.Clear(); _localBranchTrees.Clear(); _remoteBranchTrees.Clear(); _tags.Clear(); _visibleTags.Clear(); _submodules.Clear(); _searchedCommits.Clear(); _revisionFiles.Clear(); SearchCommitFilterSuggestion.Clear(); } public void RefreshAll() { Task.Run(() => { RefreshBranches(); RefreshTags(); RefreshCommits(); }); Task.Run(RefreshSubmodules); Task.Run(RefreshWorktrees); Task.Run(RefreshWorkingCopyChanges); Task.Run(RefreshStashes); } public void OpenInFileManager() { Native.OS.OpenInFileManager(_fullpath); } public void OpenInTerminal() { Native.OS.OpenTerminal(_fullpath); } public ContextMenu CreateContextMenuForExternalTools() { var tools = Native.OS.ExternalTools; if (tools.Count == 0) { App.RaiseException(_fullpath, "No available external editors found!"); return null; } var menu = new ContextMenu(); menu.Placement = PlacementMode.BottomEdgeAlignedLeft; RenderOptions.SetBitmapInterpolationMode(menu, BitmapInterpolationMode.HighQuality); foreach (var tool in tools) { var dupTool = tool; var item = new MenuItem(); item.Header = App.Text("Repository.OpenIn", dupTool.Name); item.Icon = new Image { Width = 16, Height = 16, Source = dupTool.IconImage }; item.Click += (_, e) => { dupTool.Open(_fullpath); e.Handled = true; }; menu.Items.Add(item); } return menu; } public void Fetch(bool autoStart) { if (!PopupHost.CanCreatePopup()) return; if (_remotes.Count == 0) { App.RaiseException(_fullpath, "No remotes added to this repository!!!"); return; } if (autoStart) PopupHost.ShowAndStartPopup(new Fetch(this)); else PopupHost.ShowPopup(new Fetch(this)); } public void Pull(bool autoStart) { if (!PopupHost.CanCreatePopup()) return; if (_remotes.Count == 0) { App.RaiseException(_fullpath, "No remotes added to this repository!!!"); return; } if (autoStart) PopupHost.ShowAndStartPopup(new Pull(this, null)); else PopupHost.ShowPopup(new Pull(this, null)); } public void Push(bool autoStart) { if (!PopupHost.CanCreatePopup()) return; if (_remotes.Count == 0) { App.RaiseException(_fullpath, "No remotes added to this repository!!!"); return; } if (_currentBranch == null) { App.RaiseException(_fullpath, "Can NOT found current branch!!!"); return; } if (autoStart) PopupHost.ShowAndStartPopup(new Push(this, null)); else PopupHost.ShowPopup(new Push(this, null)); } public void ApplyPatch() { if (!PopupHost.CanCreatePopup()) return; PopupHost.ShowPopup(new Apply(this)); } public void Cleanup() { if (!PopupHost.CanCreatePopup()) return; PopupHost.ShowAndStartPopup(new Cleanup(this)); } public void ClearHistoriesFilter() { _settings.Filters.Clear(); Task.Run(() => { RefreshBranches(); RefreshTags(); RefreshCommits(); }); } public void ClearSearchCommitFilter() { SearchCommitFilter = string.Empty; } public void StartSearchCommits() { if (_histories == null) return; IsSearchLoadingVisible = true; SearchResultSelectedCommit = null; IsSearchCommitSuggestionOpen = false; SearchCommitFilterSuggestion.Clear(); Task.Run(() => { var visible = new List(); switch (_searchCommitFilterType) { case 0: var commit = new Commands.QuerySingleCommit(_fullpath, _searchCommitFilter).Result(); if (commit != null) visible.Add(commit); break; case 1: visible = new Commands.QueryCommits(_fullpath, _searchCommitFilter, Models.CommitSearchMethod.ByUser).Result(); break; case 2: visible = new Commands.QueryCommits(_fullpath, _searchCommitFilter, Models.CommitSearchMethod.ByMessage).Result(); break; case 3: visible = new Commands.QueryCommits(_fullpath, _searchCommitFilter, Models.CommitSearchMethod.ByFile).Result(); break; } Dispatcher.UIThread.Invoke(() => { SearchedCommits = visible; IsSearchLoadingVisible = false; }); }); } public void ClearSearchBranchFilter() { SearchBranchFilter = string.Empty; } public void SetWatcherEnabled(bool enabled) { _watcher?.SetEnabled(enabled); } public void MarkBranchesDirtyManually() { if (_watcher == null) { Task.Run(() => { RefreshBranches(); RefreshCommits(); }); Task.Run(RefreshWorkingCopyChanges); Task.Run(RefreshWorktrees); } else { _watcher.MarkBranchDirtyManually(); } } public void MarkWorkingCopyDirtyManually() { if (_watcher == null) Task.Run(RefreshWorkingCopyChanges); else _watcher.MarkWorkingCopyDirtyManually(); } public void NavigateToCommit(string sha) { if (_histories != null) { SelectedViewIndex = 0; _histories.NavigateTo(sha); } } public void NavigateToCurrentHead() { if (_currentBranch != null) NavigateToCommit(_currentBranch.Head); } public void UpdateFilter(string filter, bool toggle) { var changed = false; if (toggle) { if (!_settings.Filters.Contains(filter)) { _settings.Filters.Add(filter); changed = true; } } else { changed = _settings.Filters.Remove(filter); } if (changed) Task.Run(RefreshCommits); } public void StashAll(bool autoStart) { _workingCopy?.StashAll(autoStart); } public void GotoResolve() { if (_workingCopy != null) SelectedViewIndex = 1; } public async void ContinueMerge() { if (_inProgressContext != null) { SetWatcherEnabled(false); var succ = await Task.Run(_inProgressContext.Continue); if (succ && _workingCopy != null) { _workingCopy.CommitMessage = string.Empty; } SetWatcherEnabled(true); } else { MarkWorkingCopyDirtyManually(); } } public async void AbortMerge() { if (_inProgressContext != null) { SetWatcherEnabled(false); var succ = await Task.Run(_inProgressContext.Abort); if (succ && _workingCopy != null) { _workingCopy.CommitMessage = string.Empty; } SetWatcherEnabled(true); } else { MarkWorkingCopyDirtyManually(); } } public void RefreshBranches() { var branches = new Commands.QueryBranches(_fullpath).Result(); var remotes = new Commands.QueryRemotes(_fullpath).Result(); var builder = BuildBranchTree(branches, remotes); Dispatcher.UIThread.Invoke(() => { Remotes = remotes; Branches = branches; CurrentBranch = branches.Find(x => x.IsCurrent); LocalBranchTrees = builder.Locals; RemoteBranchTrees = builder.Remotes; if (_workingCopy != null) _workingCopy.CanCommitWithPush = _currentBranch != null && !string.IsNullOrEmpty(_currentBranch.Upstream); }); } public void RefreshWorktrees() { var worktrees = new Commands.Worktree(_fullpath).List(); var cleaned = new List(); foreach (var worktree in worktrees) { if (worktree.IsBare || worktree.FullPath.Equals(_fullpath)) continue; cleaned.Add(worktree); } Dispatcher.UIThread.Invoke(() => { Worktrees = cleaned; }); } public void RefreshTags() { var tags = new Commands.QueryTags(_fullpath).Result(); foreach (var tag in tags) tag.IsFiltered = _settings.Filters.Contains(tag.Name); Dispatcher.UIThread.Invoke(() => { Tags = tags; VisibleTags = BuildVisibleTags(); }); } public void RefreshCommits() { Dispatcher.UIThread.Invoke(() => _histories.IsLoading = true); var limits = $"-{Preference.Instance.MaxHistoryCommits} "; if (_enableFirstParentInHistories) limits += "--first-parent "; var validFilters = new List(); foreach (var filter in _settings.Filters) { if (filter.StartsWith("refs/", StringComparison.Ordinal)) { if (_branches.FindIndex(x => x.FullName == filter) >= 0) validFilters.Add(filter); } else { if (_tags.FindIndex(t => t.Name == filter) >= 0) validFilters.Add(filter); } } if (validFilters.Count > 0) { limits += string.Join(" ", validFilters); if (_settings.Filters.Count != validFilters.Count) { Dispatcher.UIThread.Post(() => { _settings.Filters.Clear(); _settings.Filters.AddRange(validFilters); }); } } else { limits += "--exclude=refs/stash --all"; } var commits = new Commands.QueryCommits(_fullpath, limits).Result(); var graph = Models.CommitGraph.Parse(commits, _enableFirstParentInHistories); Dispatcher.UIThread.Invoke(() => { if (_histories != null) { _histories.IsLoading = false; _histories.Commits = commits; _histories.Graph = graph; } }); } public void RefreshSubmodules() { var submodules = new Commands.QuerySubmodules(_fullpath).Result(); _watcher?.SetSubmodules(submodules); Dispatcher.UIThread.Invoke(() => Submodules = submodules); } public void RefreshWorkingCopyChanges() { var changes = new Commands.QueryLocalChanges(_fullpath, _includeUntracked).Result(); if (_workingCopy == null) return; var hasUnsolvedConflict = _workingCopy.SetData(changes); var inProgress = null as InProgressContext; var rebaseMergeFolder = Path.Combine(_gitDir, "rebase-merge"); var rebaseApplyFolder = Path.Combine(_gitDir, "rebase-apply"); if (File.Exists(Path.Combine(_gitDir, "CHERRY_PICK_HEAD"))) { inProgress = new CherryPickInProgress(_fullpath); } else if (File.Exists(Path.Combine(_gitDir, "REBASE_HEAD")) && Directory.Exists(rebaseMergeFolder)) { inProgress = new RebaseInProgress(this); } else if (File.Exists(Path.Combine(_gitDir, "REVERT_HEAD"))) { inProgress = new RevertInProgress(_fullpath); } else if (File.Exists(Path.Combine(_gitDir, "MERGE_HEAD"))) { inProgress = new MergeInProgress(_fullpath); } else { if (Directory.Exists(rebaseMergeFolder)) Directory.Delete(rebaseMergeFolder, true); if (Directory.Exists(rebaseApplyFolder)) Directory.Delete(rebaseApplyFolder, true); } Dispatcher.UIThread.Invoke(() => { InProgressContext = inProgress; HasUnsolvedConflicts = hasUnsolvedConflict; LocalChangesCount = changes.Count; }); } public void RefreshStashes() { var stashes = new Commands.QueryStashes(_fullpath).Result(); Dispatcher.UIThread.Invoke(() => { if (_stashesPage != null) _stashesPage.Stashes = stashes; StashesCount = stashes.Count; }); } public void CreateNewBranch() { if (_currentBranch == null) { App.RaiseException(_fullpath, "Git do not hold any branch until you do first commit."); return; } if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateBranch(this, _currentBranch)); } public void CheckoutBranch(Models.Branch branch) { if (branch.IsLocal) { var worktree = _worktrees.Find(x => x.Branch == branch.FullName); if (worktree != null) { OpenWorktree(worktree); return; } } if (!PopupHost.CanCreatePopup()) return; if (branch.IsLocal) { if (_localChangesCount > 0) PopupHost.ShowPopup(new Checkout(this, branch.Name)); else PopupHost.ShowAndStartPopup(new Checkout(this, branch.Name)); } else { foreach (var b in _branches) { if (b.IsLocal && b.Upstream == branch.FullName) { if (!b.IsCurrent) CheckoutBranch(b); return; } } PopupHost.ShowPopup(new CreateBranch(this, branch)); } } public void DeleteMultipleBranches(List branches, bool isLocal) { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteMultipleBranches(this, branches, isLocal)); } public void CreateNewTag() { if (_currentBranch == null) { App.RaiseException(_fullpath, "Git do not hold any branch until you do first commit."); return; } if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateTag(this, _currentBranch)); } public void AddRemote() { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new AddRemote(this)); } public void AddSubmodule() { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new AddSubmodule(this)); } public void UpdateSubmodules() { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new UpdateSubmodules(this)); } public void OpenSubmodule(string submodule) { var root = Path.GetFullPath(Path.Combine(_fullpath, submodule)); var normalizedPath = root.Replace("\\", "/"); var node = Preference.Instance.FindNode(normalizedPath); if (node == null) { node = new RepositoryNode() { Id = normalizedPath, Name = Path.GetFileName(normalizedPath), Bookmark = 0, IsRepository = true, }; } App.GetLauncer()?.OpenRepositoryInTab(node, null); } public void AddWorktree() { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new AddWorktree(this)); } public void PruneWorktrees() { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new PruneWorktrees(this)); } public void OpenWorktree(Models.Worktree worktree) { var node = Preference.Instance.FindNode(worktree.FullPath); if (node == null) { node = new RepositoryNode() { Id = worktree.FullPath, Name = Path.GetFileName(worktree.FullPath), Bookmark = 0, IsRepository = true, }; } App.GetLauncer()?.OpenRepositoryInTab(node, null); } public ContextMenu CreateContextMenuForGitFlow() { var menu = new ContextMenu(); menu.Placement = PlacementMode.BottomEdgeAlignedLeft; var isGitFlowEnabled = Commands.GitFlow.IsEnabled(_fullpath, _branches); if (isGitFlowEnabled) { var startFeature = new MenuItem(); startFeature.Header = App.Text("GitFlow.StartFeature"); startFeature.Icon = App.CreateMenuIcon("Icons.GitFlow.Feature"); startFeature.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new GitFlowStart(this, "feature")); e.Handled = true; }; var startRelease = new MenuItem(); startRelease.Header = App.Text("GitFlow.StartRelease"); startRelease.Icon = App.CreateMenuIcon("Icons.GitFlow.Release"); startRelease.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new GitFlowStart(this, "release")); e.Handled = true; }; var startHotfix = new MenuItem(); startHotfix.Header = App.Text("GitFlow.StartHotfix"); startHotfix.Icon = App.CreateMenuIcon("Icons.GitFlow.Hotfix"); startHotfix.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new GitFlowStart(this, "hotfix")); e.Handled = true; }; menu.Items.Add(startFeature); menu.Items.Add(startRelease); menu.Items.Add(startHotfix); } else { var init = new MenuItem(); init.Header = App.Text("GitFlow.Init"); init.Icon = App.CreateMenuIcon("Icons.Init"); init.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new InitGitFlow(this)); e.Handled = true; }; menu.Items.Add(init); } return menu; } public ContextMenu CreateContextMenuForGitLFS() { var menu = new ContextMenu(); menu.Placement = PlacementMode.BottomEdgeAlignedLeft; var lfs = new Commands.LFS(_fullpath); if (lfs.IsEnabled()) { var addPattern = new MenuItem(); addPattern.Header = App.Text("GitLFS.AddTrackPattern"); addPattern.Icon = App.CreateMenuIcon("Icons.File.Add"); addPattern.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new LFSTrackCustomPattern(this)); e.Handled = true; }; menu.Items.Add(addPattern); menu.Items.Add(new MenuItem() { Header = "-" }); var fetch = new MenuItem(); fetch.Header = App.Text("GitLFS.Fetch"); fetch.Icon = App.CreateMenuIcon("Icons.Fetch"); fetch.IsEnabled = _remotes.Count > 0; fetch.Click += (_, e) => { if (PopupHost.CanCreatePopup()) { if (_remotes.Count == 1) PopupHost.ShowAndStartPopup(new LFSFetch(this)); else PopupHost.ShowPopup(new LFSFetch(this)); } e.Handled = true; }; menu.Items.Add(fetch); var pull = new MenuItem(); pull.Header = App.Text("GitLFS.Pull"); pull.Icon = App.CreateMenuIcon("Icons.Pull"); pull.IsEnabled = _remotes.Count > 0; pull.Click += (_, e) => { if (PopupHost.CanCreatePopup()) { if (_remotes.Count == 1) PopupHost.ShowAndStartPopup(new LFSPull(this)); else PopupHost.ShowPopup(new LFSPull(this)); } e.Handled = true; }; menu.Items.Add(pull); var push = new MenuItem(); push.Header = App.Text("GitLFS.Push"); push.Icon = App.CreateMenuIcon("Icons.Push"); push.IsEnabled = _remotes.Count > 0; push.Click += (_, e) => { if (PopupHost.CanCreatePopup()) { if (_remotes.Count == 1) PopupHost.ShowAndStartPopup(new LFSPush(this)); else PopupHost.ShowPopup(new LFSPush(this)); } e.Handled = true; }; menu.Items.Add(push); var prune = new MenuItem(); prune.Header = App.Text("GitLFS.Prune"); prune.Icon = App.CreateMenuIcon("Icons.Clean"); prune.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new LFSPrune(this)); e.Handled = true; }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(prune); var locks = new MenuItem(); locks.Header = App.Text("GitLFS.Locks"); locks.Icon = App.CreateMenuIcon("Icons.Lock"); locks.IsEnabled = _remotes.Count > 0; if (_remotes.Count == 1) { locks.Click += (_, e) => { var dialog = new Views.LFSLocks() { DataContext = new LFSLocks(_fullpath, _remotes[0].Name) }; App.OpenDialog(dialog); e.Handled = true; }; } else { foreach (var remote in _remotes) { var remoteName = remote.Name; var lockRemote = new MenuItem(); lockRemote.Header = remoteName; lockRemote.Click += (_, e) => { var dialog = new Views.LFSLocks() { DataContext = new LFSLocks(_fullpath, remoteName) }; App.OpenDialog(dialog); e.Handled = true; }; locks.Items.Add(lockRemote); } } menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(locks); } else { var install = new MenuItem(); install.Header = App.Text("GitLFS.Install"); install.Icon = App.CreateMenuIcon("Icons.Init"); install.Click += (_, e) => { var succ = new Commands.LFS(_fullpath).Install(); if (succ) App.SendNotification(_fullpath, $"LFS enabled successfully!"); e.Handled = true; }; menu.Items.Add(install); } return menu; } public ContextMenu CreateContextMenuForLocalBranch(Models.Branch branch) { var menu = new ContextMenu(); var push = new MenuItem(); push.Header = new Views.NameHighlightedTextBlock("BranchCM.Push", branch.Name); push.Icon = App.CreateMenuIcon("Icons.Push"); push.IsEnabled = _remotes.Count > 0; push.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Push(this, branch)); e.Handled = true; }; if (branch.IsCurrent) { var discard = new MenuItem(); discard.Header = App.Text("BranchCM.DiscardAll"); discard.Icon = App.CreateMenuIcon("Icons.Undo"); discard.IsEnabled = _localChangesCount > 0; discard.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Discard(this)); e.Handled = true; }; menu.Items.Add(discard); menu.Items.Add(new MenuItem() { Header = "-" }); if (!string.IsNullOrEmpty(branch.Upstream)) { var upstream = branch.Upstream.Substring(13); var fastForward = new MenuItem(); fastForward.Header = new Views.NameHighlightedTextBlock("BranchCM.FastForward", upstream); fastForward.Icon = App.CreateMenuIcon("Icons.FastForward"); fastForward.IsEnabled = branch.TrackStatus.Ahead.Count == 0; fastForward.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new Merge(this, upstream, branch.Name)); e.Handled = true; }; var pull = new MenuItem(); pull.Header = new Views.NameHighlightedTextBlock("BranchCM.Pull", upstream); pull.Icon = App.CreateMenuIcon("Icons.Pull"); pull.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Pull(this, null)); e.Handled = true; }; menu.Items.Add(fastForward); menu.Items.Add(pull); } menu.Items.Add(push); var compareWithBranch = CreateMenuItemToCompareBranches(branch); if (compareWithBranch != null) { menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(compareWithBranch); } } else { var checkout = new MenuItem(); checkout.Header = new Views.NameHighlightedTextBlock("BranchCM.Checkout", branch.Name); checkout.Icon = App.CreateMenuIcon("Icons.Check"); checkout.Click += (_, e) => { CheckoutBranch(branch); e.Handled = true; }; menu.Items.Add(checkout); var upstream = _branches.Find(x => x.FullName == branch.Upstream); if (upstream != null) { var fastForward = new MenuItem(); fastForward.Header = new Views.NameHighlightedTextBlock("BranchCM.FastForward", upstream.FriendlyName); fastForward.Icon = App.CreateMenuIcon("Icons.FastForward"); fastForward.IsEnabled = branch.TrackStatus.Ahead.Count == 0; fastForward.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new FastForwardWithoutCheckout(this, branch, upstream)); e.Handled = true; }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(fastForward); } menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(push); var merge = new MenuItem(); merge.Header = new Views.NameHighlightedTextBlock("BranchCM.Merge", branch.Name, _currentBranch.Name); merge.Icon = App.CreateMenuIcon("Icons.Merge"); merge.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Merge(this, branch.Name, _currentBranch.Name)); e.Handled = true; }; var rebase = new MenuItem(); rebase.Header = new Views.NameHighlightedTextBlock("BranchCM.Rebase", _currentBranch.Name, branch.Name); rebase.Icon = App.CreateMenuIcon("Icons.Rebase"); rebase.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Rebase(this, _currentBranch, branch)); e.Handled = true; }; menu.Items.Add(merge); menu.Items.Add(rebase); if (_localChangesCount > 0) { var compareWithWorktree = new MenuItem(); compareWithWorktree.Header = App.Text("BranchCM.CompareWithWorktree"); compareWithWorktree.Icon = App.CreateMenuIcon("Icons.Compare"); compareWithWorktree.Click += (_, _) => { SearchResultSelectedCommit = null; if (_histories != null) { var target = new Commands.QuerySingleCommit(_fullpath, branch.Head).Result(); _histories.AutoSelectedCommit = null; _histories.DetailContext = new RevisionCompare(_fullpath, target, null); } }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(compareWithWorktree); } var compareWithBranch = CreateMenuItemToCompareBranches(branch); if (compareWithBranch != null) { if (_localChangesCount == 0) menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(compareWithBranch); } } var detect = Commands.GitFlow.DetectType(_fullpath, _branches, branch.Name); if (detect.IsGitFlowBranch) { var finish = new MenuItem(); finish.Header = new Views.NameHighlightedTextBlock("BranchCM.Finish", branch.Name); finish.Icon = App.CreateMenuIcon("Icons.GitFlow"); finish.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new GitFlowFinish(this, branch, detect.Type, detect.Prefix)); e.Handled = true; }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(finish); } var rename = new MenuItem(); rename.Header = new Views.NameHighlightedTextBlock("BranchCM.Rename", branch.Name); rename.Icon = App.CreateMenuIcon("Icons.Rename"); rename.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new RenameBranch(this, branch)); e.Handled = true; }; var delete = new MenuItem(); delete.Header = new Views.NameHighlightedTextBlock("BranchCM.Delete", branch.Name); delete.Icon = App.CreateMenuIcon("Icons.Clear"); delete.IsEnabled = !branch.IsCurrent; delete.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteBranch(this, branch)); e.Handled = true; }; var createBranch = new MenuItem(); createBranch.Icon = App.CreateMenuIcon("Icons.Branch.Add"); createBranch.Header = App.Text("CreateBranch"); createBranch.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateBranch(this, branch)); e.Handled = true; }; var createTag = new MenuItem(); createTag.Icon = App.CreateMenuIcon("Icons.Tag.Add"); createTag.Header = App.Text("CreateTag"); createTag.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateTag(this, branch)); e.Handled = true; }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(rename); menu.Items.Add(delete); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(createBranch); menu.Items.Add(createTag); menu.Items.Add(new MenuItem() { Header = "-" }); var remoteBranches = new List(); foreach (var b in _branches) { if (!b.IsLocal) remoteBranches.Add(b); } if (remoteBranches.Count > 0) { var tracking = new MenuItem(); tracking.Header = App.Text("BranchCM.Tracking"); tracking.Icon = App.CreateMenuIcon("Icons.Track"); foreach (var b in remoteBranches) { var upstream = b.FullName.Replace("refs/remotes/", ""); var target = new MenuItem(); target.Header = upstream; if (branch.Upstream == b.FullName) target.Icon = App.CreateMenuIcon("Icons.Check"); target.Click += (_, e) => { if (Commands.Branch.SetUpstream(_fullpath, branch.Name, upstream)) Task.Run(RefreshBranches); e.Handled = true; }; tracking.Items.Add(target); } var unsetUpstream = new MenuItem(); unsetUpstream.Header = App.Text("BranchCM.UnsetUpstream"); unsetUpstream.Click += (_, e) => { if (Commands.Branch.SetUpstream(_fullpath, branch.Name, string.Empty)) Task.Run(RefreshBranches); e.Handled = true; }; tracking.Items.Add(new MenuItem() { Header = "-" }); tracking.Items.Add(unsetUpstream); menu.Items.Add(tracking); } var archive = new MenuItem(); archive.Icon = App.CreateMenuIcon("Icons.Archive"); archive.Header = App.Text("Archive"); archive.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Archive(this, branch)); e.Handled = true; }; menu.Items.Add(archive); menu.Items.Add(new MenuItem() { Header = "-" }); var copy = new MenuItem(); copy.Header = App.Text("BranchCM.CopyName"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, e) => { App.CopyText(branch.Name); e.Handled = true; }; menu.Items.Add(copy); return menu; } public ContextMenu CreateContextMenuForRemote(Models.Remote remote) { var menu = new ContextMenu(); if (remote.TryGetVisitURL(out string visitURL)) { var visit = new MenuItem(); visit.Header = App.Text("RemoteCM.OpenInBrowser"); visit.Icon = App.CreateMenuIcon("Icons.OpenWith"); visit.Click += (_, e) => { Native.OS.OpenBrowser(visitURL); e.Handled = true; }; menu.Items.Add(visit); menu.Items.Add(new MenuItem() { Header = "-" }); } var fetch = new MenuItem(); fetch.Header = App.Text("RemoteCM.Fetch"); fetch.Icon = App.CreateMenuIcon("Icons.Fetch"); fetch.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new Fetch(this, remote)); e.Handled = true; }; var prune = new MenuItem(); prune.Header = App.Text("RemoteCM.Prune"); prune.Icon = App.CreateMenuIcon("Icons.Clean"); prune.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowAndStartPopup(new PruneRemote(this, remote)); e.Handled = true; }; var edit = new MenuItem(); edit.Header = App.Text("RemoteCM.Edit"); edit.Icon = App.CreateMenuIcon("Icons.Edit"); edit.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new EditRemote(this, remote)); e.Handled = true; }; var delete = new MenuItem(); delete.Header = App.Text("RemoteCM.Delete"); delete.Icon = App.CreateMenuIcon("Icons.Clear"); delete.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteRemote(this, remote)); e.Handled = true; }; var copy = new MenuItem(); copy.Header = App.Text("RemoteCM.CopyURL"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, e) => { App.CopyText(remote.URL); e.Handled = true; }; menu.Items.Add(fetch); menu.Items.Add(prune); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(edit); menu.Items.Add(delete); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(copy); return menu; } public ContextMenu CreateContextMenuForRemoteBranch(Models.Branch branch) { var menu = new ContextMenu(); var name = branch.FriendlyName; var checkout = new MenuItem(); checkout.Header = new Views.NameHighlightedTextBlock("BranchCM.Checkout", name); checkout.Icon = App.CreateMenuIcon("Icons.Check"); checkout.Click += (_, e) => { CheckoutBranch(branch); e.Handled = true; }; menu.Items.Add(checkout); menu.Items.Add(new MenuItem() { Header = "-" }); if (_currentBranch != null) { var pull = new MenuItem(); pull.Header = new Views.NameHighlightedTextBlock("BranchCM.PullInto", name, _currentBranch.Name); pull.Icon = App.CreateMenuIcon("Icons.Pull"); pull.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Pull(this, branch)); e.Handled = true; }; var merge = new MenuItem(); merge.Header = new Views.NameHighlightedTextBlock("BranchCM.Merge", name, _currentBranch.Name); merge.Icon = App.CreateMenuIcon("Icons.Merge"); merge.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Merge(this, name, _currentBranch.Name)); e.Handled = true; }; var rebase = new MenuItem(); rebase.Header = new Views.NameHighlightedTextBlock("BranchCM.Rebase", _currentBranch.Name, name); rebase.Icon = App.CreateMenuIcon("Icons.Rebase"); rebase.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Rebase(this, _currentBranch, branch)); e.Handled = true; }; menu.Items.Add(pull); menu.Items.Add(merge); menu.Items.Add(rebase); menu.Items.Add(new MenuItem() { Header = "-" }); } var hasCompare = false; if (_localChangesCount > 0) { var compareWithWorktree = new MenuItem(); compareWithWorktree.Header = App.Text("BranchCM.CompareWithWorktree"); compareWithWorktree.Icon = App.CreateMenuIcon("Icons.Compare"); compareWithWorktree.Click += (_, _) => { SearchResultSelectedCommit = null; if (_histories != null) { var target = new Commands.QuerySingleCommit(_fullpath, branch.Head).Result(); _histories.AutoSelectedCommit = null; _histories.DetailContext = new RevisionCompare(_fullpath, target, null); } }; menu.Items.Add(compareWithWorktree); hasCompare = true; } var compareWithBranch = CreateMenuItemToCompareBranches(branch); if (compareWithBranch != null) { menu.Items.Add(compareWithBranch); hasCompare = true; } if (hasCompare) menu.Items.Add(new MenuItem() { Header = "-" }); var delete = new MenuItem(); delete.Header = new Views.NameHighlightedTextBlock("BranchCM.Delete", name); delete.Icon = App.CreateMenuIcon("Icons.Clear"); delete.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteBranch(this, branch)); e.Handled = true; }; var createBranch = new MenuItem(); createBranch.Icon = App.CreateMenuIcon("Icons.Branch.Add"); createBranch.Header = App.Text("CreateBranch"); createBranch.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateBranch(this, branch)); e.Handled = true; }; var createTag = new MenuItem(); createTag.Icon = App.CreateMenuIcon("Icons.Tag.Add"); createTag.Header = App.Text("CreateTag"); createTag.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateTag(this, branch)); e.Handled = true; }; var archive = new MenuItem(); archive.Icon = App.CreateMenuIcon("Icons.Archive"); archive.Header = App.Text("Archive"); archive.Click += (_, e) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Archive(this, branch)); e.Handled = true; }; var copy = new MenuItem(); copy.Header = App.Text("BranchCM.CopyName"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, e) => { App.CopyText(name); e.Handled = true; }; menu.Items.Add(delete); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(createBranch); menu.Items.Add(createTag); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(archive); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(copy); return menu; } public ContextMenu CreateContextMenuForTag(Models.Tag tag) { var createBranch = new MenuItem(); createBranch.Icon = App.CreateMenuIcon("Icons.Branch.Add"); createBranch.Header = App.Text("CreateBranch"); createBranch.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateBranch(this, tag)); ev.Handled = true; }; var pushTag = new MenuItem(); pushTag.Header = new Views.NameHighlightedTextBlock("TagCM.Push", tag.Name); pushTag.Icon = App.CreateMenuIcon("Icons.Push"); pushTag.IsEnabled = _remotes.Count > 0; pushTag.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new PushTag(this, tag)); ev.Handled = true; }; var deleteTag = new MenuItem(); deleteTag.Header = new Views.NameHighlightedTextBlock("TagCM.Delete", tag.Name); deleteTag.Icon = App.CreateMenuIcon("Icons.Clear"); deleteTag.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteTag(this, tag)); ev.Handled = true; }; var archive = new MenuItem(); archive.Icon = App.CreateMenuIcon("Icons.Archive"); archive.Header = App.Text("Archive"); archive.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new Archive(this, tag)); ev.Handled = true; }; var copy = new MenuItem(); copy.Header = App.Text("TagCM.Copy"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, ev) => { App.CopyText(tag.Name); ev.Handled = true; }; var menu = new ContextMenu(); menu.Items.Add(createBranch); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(pushTag); menu.Items.Add(deleteTag); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(archive); menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(copy); return menu; } public ContextMenu CreateContextMenuForSubmodule(string submodule) { var open = new MenuItem(); open.Header = App.Text("Submodule.Open"); open.Icon = App.CreateMenuIcon("Icons.Folder.Open"); open.Click += (_, ev) => { OpenSubmodule(submodule); ev.Handled = true; }; var copy = new MenuItem(); copy.Header = App.Text("Submodule.CopyPath"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, ev) => { App.CopyText(submodule); ev.Handled = true; }; var rm = new MenuItem(); rm.Header = App.Text("Submodule.Remove"); rm.Icon = App.CreateMenuIcon("Icons.Clear"); rm.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new DeleteSubmodule(this, submodule)); ev.Handled = true; }; var menu = new ContextMenu(); menu.Items.Add(open); menu.Items.Add(copy); menu.Items.Add(rm); return menu; } public ContextMenu CreateContextMenuForWorktree(Models.Worktree worktree) { var menu = new ContextMenu(); if (worktree.IsLocked) { var unlock = new MenuItem(); unlock.Header = App.Text("Worktree.Unlock"); unlock.Icon = App.CreateMenuIcon("Icons.Unlock"); unlock.Click += (_, ev) => { SetWatcherEnabled(false); var succ = new Commands.Worktree(_fullpath).Unlock(worktree.FullPath); if (succ) worktree.IsLocked = false; SetWatcherEnabled(true); ev.Handled = true; }; menu.Items.Add(unlock); } else { var loc = new MenuItem(); loc.Header = App.Text("Worktree.Lock"); loc.Icon = App.CreateMenuIcon("Icons.Lock"); loc.Click += (_, ev) => { SetWatcherEnabled(false); var succ = new Commands.Worktree(_fullpath).Lock(worktree.FullPath); if (succ) worktree.IsLocked = true; SetWatcherEnabled(true); ev.Handled = true; }; menu.Items.Add(loc); } var remove = new MenuItem(); remove.Header = App.Text("Worktree.Remove"); remove.Icon = App.CreateMenuIcon("Icons.Clear"); remove.Click += (_, ev) => { if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new RemoveWorktree(this, worktree)); ev.Handled = true; }; menu.Items.Add(remove); var copy = new MenuItem(); copy.Header = App.Text("Worktree.CopyPath"); copy.Icon = App.CreateMenuIcon("Icons.Copy"); copy.Click += (_, e) => { App.CopyText(worktree.FullPath); e.Handled = true; }; menu.Items.Add(new MenuItem() { Header = "-" }); menu.Items.Add(copy); return menu; } private MenuItem CreateMenuItemToCompareBranches(Models.Branch branch) { if (_branches.Count == 1) return null; var compare = new MenuItem(); compare.Header = App.Text("BranchCM.CompareWithBranch"); compare.Icon = App.CreateMenuIcon("Icons.Compare"); foreach (var b in _branches) { if (b.FullName != branch.FullName) { var dup = b; var target = new MenuItem(); target.Header = b.FriendlyName; target.Icon = App.CreateMenuIcon(b.IsCurrent ? "Icons.Check" : "Icons.Branch"); target.Click += (_, e) => { App.OpenDialog(new Views.BranchCompare() { DataContext = new BranchCompare(_fullpath, branch, dup) }); e.Handled = true; }; compare.Items.Add(target); } } return compare; } private BranchTreeNode.Builder BuildBranchTree(List branches, List remotes) { var builder = new BranchTreeNode.Builder(); builder.SetFilters(_settings.Filters); if (string.IsNullOrEmpty(_searchBranchFilter)) { builder.CollectExpandedNodes(_localBranchTrees, true); builder.CollectExpandedNodes(_remoteBranchTrees, false); builder.Run(branches, remotes, false); } else { var visibles = new List(); foreach (var b in branches) { if (b.FullName.Contains(_searchBranchFilter, StringComparison.OrdinalIgnoreCase)) visibles.Add(b); } builder.Run(visibles, remotes, true); } return builder; } private List BuildVisibleTags() { var visible = new List(); if (string.IsNullOrEmpty(_searchBranchFilter)) { visible.AddRange(_tags); } else { foreach (var t in _tags) { if (t.Name.Contains(_searchBranchFilter, StringComparison.OrdinalIgnoreCase)) visible.Add(t); } } return visible; } private void UpdateCurrentRevisionFilesForSearchSuggestion() { _revisionFiles.Clear(); if (_searchCommitFilterType == 3) { Task.Run(() => { var files = new Commands.QueryCurrentRevisionFiles(_fullpath).Result(); Dispatcher.UIThread.Invoke(() => _revisionFiles.AddRange(files)); }); } } private string _fullpath = string.Empty; private string _gitDir = string.Empty; private Models.RepositorySettings _settings = null; private Models.Watcher _watcher = null; private Histories _histories = null; private WorkingCopy _workingCopy = null; private StashesPage _stashesPage = null; private int _selectedViewIndex = 0; private object _selectedView = null; private int _localChangesCount = 0; private int _stashesCount = 0; private bool _isSearching = false; private bool _isSearchLoadingVisible = false; private bool _isSearchCommitSuggestionOpen = false; private int _searchCommitFilterType = 0; private bool _enableFirstParentInHistories = false; private string _searchCommitFilter = string.Empty; private List _searchedCommits = new List(); private List _revisionFiles = new List(); private bool _isLocalBranchGroupExpanded = true; private bool _isRemoteGroupExpanded = false; private bool _isTagGroupExpanded = false; private bool _isSubmoduleGroupExpanded = false; private bool _isWorktreeGroupExpanded = false; private string _searchBranchFilter = string.Empty; private List _remotes = new List(); private List _branches = new List(); private Models.Branch _currentBranch = null; private List _localBranchTrees = new List(); private List _remoteBranchTrees = new List(); private List _worktrees = new List(); private List _tags = new List(); private List _visibleTags = new List(); private List _submodules = new List(); private bool _includeUntracked = true; private InProgressContext _inProgressContext = null; private bool _hasUnsolvedConflicts = false; private Models.Commit _searchResultSelectedCommit = null; } }