Actualizar 'README.md'

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-07-24 19:23:36 -05:00
parent eff0b0d70a
commit a5364314ab
1 changed files with 20 additions and 1 deletions

View File

@ -1 +1,20 @@
ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and Bitbucket.
# 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
```