Skip to content

Commit 3e70ff9

Browse files
committed
fix: should not use ... to get revision range for rebasing (#1033)
Signed-off-by: leo <[email protected]>
1 parent f930967 commit 3e70ff9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Clone/Fetch/Pull/Push...
2121
* Merge/Rebase/Reset/Revert/Amend/Cherry-pick...
2222
* Amend/Reword
23-
* Interactive rebase (Basic)
23+
* Interactive rebase
2424
* Branches
2525
* Remotes
2626
* Tags

src/ViewModels/InteractiveRebase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public InteractiveRebase(Repository repo, Models.Branch current, Models.Commit o
118118

119119
Task.Run(() =>
120120
{
121-
var commits = new Commands.QueryCommitsWithFullMessage(repoPath, $"{on.SHA}...HEAD").Result();
121+
var commits = new Commands.QueryCommitsWithFullMessage(repoPath, $"{on.SHA}..HEAD").Result();
122122
var list = new List<InteractiveRebaseItem>();
123123

124124
foreach (var c in commits)

0 commit comments

Comments
 (0)