Hi,

> How do I include these in the iceberg commit/push?
> How do I see changes made in these files from version to version?

Apart from directly using the actual git repo outside of pharo, you can use
the facade provided by IceRepository, or you can use libgit inside Pharo.

E.g. to add an external file to index (which will be then committed
together with new code)

repo := IceRepository registry detect: [ :each | each name = 'some-repo' ].
repo addFilesToIndex: {'README.md'}.

Peter



On Sun, Jan 28, 2018 at 6:23 AM, Hernán Morales Durand <
[email protected]> wrote:

> Hi Ken,
>
> Some days ago I published a package to manage download of resources
> from Metacello configurations.
> Have a look at https://github.com/hernanmd/MetacelloFileDownload
>
> Hernán
>
>
> 2018-01-27 11:38 GMT-03:00 kmo <[email protected]>:
> > I don't understand how iceberg handles resource files that you might also
> > like to version along with the pharo code.
> >
> > Say I have an CSV file and a text file that my pharo application uses.
> How
> > do I include these in the iceberg commit/push? How do I see changes made
> in
> > these files from version to version?
> >
> > Does iceberg only handle pharo code? Generally git clients don't care
> about
> > the file type - and it it is any kind of text you can see the actual
> > differences between each commit.
> >
> > Ken
> >
> >
> >
> > --
> > Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
> >
>
>

Reply via email to