public override void OnEndCommit(ChangeSet changeSet, bool success) { if (success && widget.PushAfterCommit) { MercurialService.Push((MercurialRepository)changeSet.Repository); } }
protected virtual void OnButtonSetDefaultBranchClicked(object sender, System.EventArgs e) { TreeIter it; if (!listBranches.Selection.GetSelected(out it)) { return; } Branch b = (Branch)storeBranches.GetValue(it, 0); MercurialService.SwitchToBranch(repo, b.Name); FillBranches(); }
protected override void Run(object dataItem) { MercurialService.SwitchToBranch(Repository, (string)dataItem); }
protected override void Run() { MercurialService.Push(Repository); }
protected override void Run() { MercurialService.ShowShelfManager(Repository); }
protected override void Run() { MercurialService.ShowMergeDialog(Repository, true); }
protected override void Run() { MercurialService.ShowConfigurationDialog(Repository); }