This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-07-25 14:34:27 -05:00
commit f07b0ba1fd
1 changed files with 20 additions and 0 deletions

20
README.md Normal file
View File

@ -0,0 +1,20 @@
# ExoRepo
ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and
Bitbucket.
To install this from Gitea, run from a playground:
```smalltalk
location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'ExoRepo'.
(IceRepositoryCreator new
location: location;
remote: (IceGitRemote url: 'https://code.tupale.co/Offray/ExoRepo.git');
createRepository)
register.
Metacello new
repository: 'gitlocal://', location fullName;
baseline: 'ExoRepo';
load
```