Creating delete files and improving instance creation and remote.
This commit is contained in:
parent
ec04597451
commit
5b92b14500
@ -35,11 +35,15 @@ FossilRepo class >> executable: aPathString [
|
|||||||
|
|
||||||
{ #category : #'instance creation' }
|
{ #category : #'instance creation' }
|
||||||
FossilRepo class >> local: aFilePath repository: aFossilFilePath [
|
FossilRepo class >> local: aFilePath repository: aFossilFilePath [
|
||||||
|
|
||||||
^ self new
|
| repo |
|
||||||
|
repo := self new
|
||||||
local: aFilePath;
|
local: aFilePath;
|
||||||
repository: aFossilFilePath;
|
repository: aFossilFilePath.
|
||||||
yourself
|
repo remote = 'off'
|
||||||
|
ifTrue: [ repo remote: nil ]
|
||||||
|
ifFalse: [ repo remote: repo remote ].
|
||||||
|
^ repo
|
||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
@ -169,6 +173,19 @@ FossilRepo >> createPage: pageName [
|
|||||||
^ NeoJSONReader fromString: (self jsonWikiDataFor: 'create/', pageName)
|
^ NeoJSONReader fromString: (self jsonWikiDataFor: 'create/', pageName)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
FossilRepo >> delete: fileRelativePath [
|
||||||
|
"I delete a file to the working Fossil repository, given that both, the file and the repositor,
|
||||||
|
share the same root directory/folder."
|
||||||
|
|
||||||
|
OSSUnixSubprocess new
|
||||||
|
command: self class locateExecutable;
|
||||||
|
workingDirectory: self localRoot;
|
||||||
|
arguments: { 'delete' . fileRelativePath };
|
||||||
|
redirectStdout;
|
||||||
|
runAndWaitOnExitDo: [ :process :outString | ^ outString ]
|
||||||
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
FossilRepo >> diff [
|
FossilRepo >> diff [
|
||||||
|
|
||||||
@ -437,7 +454,11 @@ FossilRepo >> remote [
|
|||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
FossilRepo >> remote: anUrlString [
|
FossilRepo >> remote: anUrlString [
|
||||||
remote := anUrlString asUrl
|
|
||||||
|
anUrlString
|
||||||
|
ifNil: [ remote := anUrlString ]
|
||||||
|
ifNotNil: [ remote := anUrlString asUrl ]
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
|
Loading…
Reference in New Issue
Block a user