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.
1 parent 6b040ae commit 0ab4926Copy full SHA for 0ab4926
src/Commands/QueryCommitsForInteractiveRebase.cs
@@ -12,7 +12,7 @@ public QueryCommitsForInteractiveRebase(string repo, string on)
12
13
WorkingDirectory = repo;
14
Context = repo;
15
- Args = $"log --topo-order --right-only --max-parents=1 --no-show-signature --decorate=full --format=\"%H%n%P%n%D%n%aN±%aE%n%at%n%cN±%cE%n%ct%n%B%n{_boundary}\" {on}..HEAD";
+ Args = $"log --topo-order --cherry-pick --right-only --no-merges --no-show-signature --decorate=full --format=\"%H%n%P%n%D%n%aN±%aE%n%at%n%cN±%cE%n%ct%n%B%n{_boundary}\" {on}...HEAD";
16
}
17
18
public async Task<List<Models.InteractiveCommit>> GetResultAsync()
0 commit comments