Skip to content

Commit

Permalink
Fix fast-forward materializing old HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusDoe committed Oct 19, 2023
1 parent cfa9671 commit 12970c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mergeCommitIntoHead: aCommit displayName: aString
mergeBase = aCommit ifTrue: [^ self inform: 'Already up to date.'].
mergeBase = head ifTrue: [
self inform: 'Fast-forwarding.'.
^ self openDialogToMaterializeHead then:
^ (self openDialogToMaterializeCommit: aCommit) then:
[:dialog | self activeWorkingCopy fastForwardTo: aCommit displayName: aString]].
changeSets := self activeWorkingCopy
mergeCommit: aCommit
Expand Down
2 changes: 1 addition & 1 deletion src/Squot.package/SquotBrowser.class/methodProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"currentBranchIfNilInformAnd:" : "mad 9/26/2023 16:56",
"doesRef:comeBeforeRef:" : "mad 9/19/2023 14:45",
"mergeCommitIntoHead:" : "mad 9/21/2023 13:47",
"mergeCommitIntoHead:displayName:" : "mad 10/16/2023 22:02",
"mergeCommitIntoHead:displayName:" : "mad 10/19/2023 11:34",
"mergeRefIntoHead:" : "mad 9/18/2023 17:22",
"newProject:" : "mad 9/21/2023 13:57",
"open" : "mad 8/30/2023 17:41",
Expand Down

0 comments on commit 12970c3

Please sign in to comment.