-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
110 changed files
with
585 additions
and
2 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
src/Squot.package/SquotBrowser.class/instance/actionRebaseOntoActiveCommit.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
actions | ||
actionRebaseOntoActiveCommit | ||
| commits | | ||
self activeWorkingCopyIfNilInformAnd: [^ self]. | ||
self activeCommit ifNil: [^ self inform: 'Please select a commit first.']. | ||
commits := GitHistoryWalker new | ||
excludeAncestorsOf: self activeCommit; | ||
startingFrom: self activeWorkingCopy headCommit. | ||
(SquotInteractiveRebase newWithCommits: commits) open. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/class/newWithCommits..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
as yet unclassified | ||
newWithCommits: aCollection | ||
^ self newWithOperations: (aCollection collect: [:each | SquotRebaseOperationPick newWithCommit: each]) |
5 changes: 5 additions & 0 deletions
5
src/Squot.package/SquotInteractiveRebase.class/class/newWithOperations..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
newWithOperations: aCollection | ||
^ self new | ||
addAll: aCollection; | ||
yourself |
7 changes: 7 additions & 0 deletions
7
src/Squot.package/SquotInteractiveRebase.class/instance/actionChangeOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
running | ||
actionChangeOperation | ||
self activeOperation ifNil: [^ self inform: 'Please select an operation first.']. | ||
self todoList | ||
at: (self todoList indexOf: self activeOperation) | ||
put: (self activeOperation changeOperation ifNil: [^ self]). | ||
self changed: #todoList. |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/actionRun.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
running | ||
actionRun | ||
self runNextOperation. |
5 changes: 5 additions & 0 deletions
5
src/Squot.package/SquotInteractiveRebase.class/instance/activeOperation..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
activeOperation: aRebaseOperation | ||
self assert: (aRebaseOperation isNil or: [self todoList includes: aRebaseOperation]). | ||
activeOperation := aRebaseOperation. | ||
self changed: #activeOperation. |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/activeOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
activeOperation | ||
^ activeOperation |
4 changes: 4 additions & 0 deletions
4
src/Squot.package/SquotInteractiveRebase.class/instance/addAll..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
addAll: aCollection | ||
self todoList addAll: aCollection. | ||
self changed: #todoList. |
6 changes: 6 additions & 0 deletions
6
src/Squot.package/SquotInteractiveRebase.class/instance/buildButtons..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
toolbuilder | ||
buildButtons: builder | ||
^ SquotGUIUtilities buildButtons: { | ||
self buildChangeOperationButton: builder. | ||
self buildRunButton: builder. | ||
} with: builder |
8 changes: 8 additions & 0 deletions
8
src/Squot.package/SquotInteractiveRebase.class/instance/buildChangeOperationButton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
toolbuilder | ||
buildChangeOperationButton: builder | ||
^ builder pluggableActionButtonSpec new | ||
model: self; | ||
action: #actionChangeOperation; | ||
label: 'Change'; | ||
help: 'Change the operation type of the active operation.'; | ||
yourself |
6 changes: 6 additions & 0 deletions
6
src/Squot.package/SquotInteractiveRebase.class/instance/buildLayout..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
toolbuilder | ||
buildLayout: builder | ||
^ SquotGUIUtilities buildVerticalLayout: { | ||
self buildMainLayout: builder. | ||
self buildButtons: builder. | ||
} with: builder |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/buildMainLayout..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
toolbuilder | ||
buildMainLayout: builder | ||
^ self buildTodoList: builder |
8 changes: 8 additions & 0 deletions
8
src/Squot.package/SquotInteractiveRebase.class/instance/buildRunButton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
toolbuilder | ||
buildRunButton: builder | ||
^ builder pluggableActionButtonSpec new | ||
model: self; | ||
action: #actionRun; | ||
label: 'Run'; | ||
help: 'Run the next operation.'; | ||
yourself |
16 changes: 16 additions & 0 deletions
16
src/Squot.package/SquotInteractiveRebase.class/instance/buildTodoList..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
toolbuilder | ||
buildTodoList: builder | ||
^ builder pluggableTreeSpec new | ||
model: self; | ||
roots: #todoList; | ||
nodeClass: SquotRebaseOperationWrapper; | ||
getSelected: #activeOperation; | ||
setSelected: #activeOperation:; | ||
columns: { | ||
[:listMorph | (listMorph filteredItems collect: [:item | | ||
item preferredWidthOfColumn: 1]) max]. | ||
[:listMorph | (listMorph filteredItems collect: [:item | | ||
item preferredWidthOfColumn: 2]) max]. | ||
nil. | ||
}; | ||
yourself |
7 changes: 7 additions & 0 deletions
7
src/Squot.package/SquotInteractiveRebase.class/instance/buildWindow..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
toolbuilder | ||
buildWindow: builder | ||
^ builder pluggableWindowSpec new | ||
model: self; | ||
label: #windowTitle; | ||
children: (SquotGUIUtilities windowChild: (self buildLayout: builder)); | ||
yourself |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/buildWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
toolbuilder | ||
buildWith: builder | ||
^ builder build: (self buildWindow: builder) |
4 changes: 4 additions & 0 deletions
4
src/Squot.package/SquotInteractiveRebase.class/instance/initialize.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
initialize | ||
super initialize. | ||
self todoList: OrderedCollection new. |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/nextOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
nextOperation | ||
^ self todoList first |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/open.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
toolbuilder | ||
open | ||
^ ToolBuilder open: self |
4 changes: 4 additions & 0 deletions
4
src/Squot.package/SquotInteractiveRebase.class/instance/removeNextOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
removeNextOperation | ||
self todoList removeFirst. | ||
self changed: #todoList. |
4 changes: 4 additions & 0 deletions
4
src/Squot.package/SquotInteractiveRebase.class/instance/runNextOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
running | ||
runNextOperation | ||
self nextOperation run. | ||
self removeNextOperation. |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/todoList..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
todoList: anOrderedCollection | ||
todoList := anOrderedCollection |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/todoList.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
todoList | ||
^ todoList |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotInteractiveRebase.class/instance/windowTitle.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
toolbuilder | ||
windowTitle | ||
^ 'Interactive Rebase' |
26 changes: 26 additions & 0 deletions
26
src/Squot.package/SquotInteractiveRebase.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"class" : { | ||
"newWithCommits:" : "mad 12/5/2023 21:40", | ||
"newWithOperations:" : "mad 12/5/2023 21:39" }, | ||
"instance" : { | ||
"actionChangeOperation" : "mad 12/5/2023 22:18", | ||
"actionRun" : "mad 12/5/2023 21:19", | ||
"activeOperation" : "mad 12/5/2023 21:49", | ||
"activeOperation:" : "mad 12/5/2023 22:18", | ||
"addAll:" : "mad 12/5/2023 22:14", | ||
"buildButtons:" : "mad 12/5/2023 22:08", | ||
"buildChangeOperationButton:" : "mad 12/5/2023 22:08", | ||
"buildLayout:" : "mad 12/5/2023 21:18", | ||
"buildMainLayout:" : "mad 12/5/2023 21:49", | ||
"buildRunButton:" : "mad 12/5/2023 21:19", | ||
"buildTodoList:" : "mad 12/5/2023 21:22", | ||
"buildWindow:" : "mad 12/5/2023 21:17", | ||
"buildWith:" : "mad 12/5/2023 21:17", | ||
"initialize" : "mad 12/5/2023 21:38", | ||
"nextOperation" : "mad 12/5/2023 21:16", | ||
"open" : "mad 12/5/2023 21:44", | ||
"removeNextOperation" : "mad 12/5/2023 21:16", | ||
"runNextOperation" : "mad 12/5/2023 21:16", | ||
"todoList" : "mad 12/5/2023 21:16", | ||
"todoList:" : "mad 12/5/2023 21:38", | ||
"windowTitle" : "mad 12/5/2023 21:18" } } |
15 changes: 15 additions & 0 deletions
15
src/Squot.package/SquotInteractiveRebase.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"category" : "Squot-Mapper-Rebase", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
"todoList", | ||
"activeOperation" ], | ||
"name" : "SquotInteractiveRebase", | ||
"pools" : [ | ||
], | ||
"super" : "Model", | ||
"type" : "normal" } |
Empty file.
8 changes: 8 additions & 0 deletions
8
src/Squot.package/SquotRebaseOperation.class/class/chooseCompatibleOperationClass.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
accessing | ||
chooseCompatibleOperationClass | ||
| classes | | ||
classes := self compatibleOperationClasses. | ||
^ UIManager default | ||
chooseFrom: (classes collect: #operationName) | ||
values: classes | ||
title: 'Choose the new operation type:' |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperation.class/class/compatibleOperationClasses.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
compatibleOperationClasses | ||
self subclassResponsibility. |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperation.class/class/operationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
operationName | ||
self subclassResponsibility. |
5 changes: 5 additions & 0 deletions
5
src/Squot.package/SquotRebaseOperation.class/instance/changeOperation.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
changeOperation | ||
^ (self class chooseCompatibleOperationClass ifNil: [^ nil]) new | ||
copyFrom: self; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperation.class/instance/keepsCommit.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
keepsCommit | ||
^ true |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperation.class/instance/operationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
operationName | ||
^ self class operationName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
run | ||
"TODO" | ||
"self subclassResponsibility." |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperation.class/instance/textIcon.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
textIcon | ||
^ self keepsCommit ifTrue: ['o'] ifFalse: ['|'] |
11 changes: 11 additions & 0 deletions
11
src/Squot.package/SquotRebaseOperation.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"class" : { | ||
"chooseCompatibleOperationClass" : "mad 12/5/2023 22:00", | ||
"compatibleOperationClasses" : "mad 12/5/2023 22:00", | ||
"operationName" : "mad 12/5/2023 21:51" }, | ||
"instance" : { | ||
"changeOperation" : "mad 12/5/2023 22:07", | ||
"keepsCommit" : "mad 12/5/2023 21:29", | ||
"operationName" : "mad 12/5/2023 21:51", | ||
"run" : "mad 12/5/2023 21:28", | ||
"textIcon" : "mad 12/5/2023 21:32" } } |
14 changes: 14 additions & 0 deletions
14
src/Squot.package/SquotRebaseOperation.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Squot-Mapper-Rebase", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "SquotRebaseOperation", | ||
"pools" : [ | ||
], | ||
"super" : "Object", | ||
"type" : "normal" } |
Empty file.
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationBreak.class/class/operationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
operationName | ||
^ 'break' |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationBreak.class/instance/keepsCommit.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
keepsCommit | ||
^ false |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationBreak.class/instance/label.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
label | ||
^ '' |
6 changes: 6 additions & 0 deletions
6
src/Squot.package/SquotRebaseOperationBreak.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"class" : { | ||
"operationName" : "mad 12/5/2023 21:52" }, | ||
"instance" : { | ||
"keepsCommit" : "mad 12/5/2023 21:30", | ||
"label" : "mad 12/5/2023 22:02" } } |
14 changes: 14 additions & 0 deletions
14
src/Squot.package/SquotRebaseOperationBreak.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Squot-Mapper-Rebase", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "SquotRebaseOperationBreak", | ||
"pools" : [ | ||
], | ||
"super" : "SquotRebaseOperation", | ||
"type" : "normal" } |
Empty file.
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationDrop.class/class/operationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
operationName | ||
^ 'drop' |
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationDrop.class/instance/keepsCommit.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
keepsCommit | ||
^ false |
5 changes: 5 additions & 0 deletions
5
src/Squot.package/SquotRebaseOperationDrop.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
"operationName" : "mad 12/5/2023 21:53" }, | ||
"instance" : { | ||
"keepsCommit" : "mad 12/5/2023 21:30" } } |
14 changes: 14 additions & 0 deletions
14
src/Squot.package/SquotRebaseOperationDrop.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Squot-Mapper-Rebase", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "SquotRebaseOperationDrop", | ||
"pools" : [ | ||
], | ||
"super" : "SquotRebaseOperationWithCommit", | ||
"type" : "normal" } |
Empty file.
3 changes: 3 additions & 0 deletions
3
src/Squot.package/SquotRebaseOperationEdit.class/class/operationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
operationName | ||
^ 'edit' |
5 changes: 5 additions & 0 deletions
5
src/Squot.package/SquotRebaseOperationEdit.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
"operationName" : "mad 12/5/2023 21:54" }, | ||
"instance" : { | ||
} } |
Oops, something went wrong.