We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Squash Commits Since This
1 parent 74d7e74 commit 4d37e73Copy full SHA for 4d37e73
src/ViewModels/Histories.cs
@@ -501,7 +501,7 @@ public ContextMenu CreateContextMenuForSelectedCommits(List<Models.Commit> selec
501
if (commit.IsMerged)
502
{
503
var squash = new MenuItem();
504
- squash.Header = App.Text("CommitCM.SquashCommitsSinceThis", target);
+ squash.Header = App.Text("CommitCM.SquashCommitsSinceThis", commit.SHA.Substring(0, 10));
505
squash.Icon = App.CreateMenuIcon("Icons.SquashIntoParent");
506
squash.Click += (_, e) =>
507
0 commit comments