I have recently tried to publish the go-ipfs sources to gx and had some hassles
In https://github.com/whyrusleeping/gx#ignoring-files-from-a-publish I read that gx publish ignores files that are ignored by git. An ipfs/go-ipfs repo contains around 56MB of binaries after some sharness tests are run. I had to git clean -x before publishing in order to avoid publishing those.
Probably gx should leave it to git status --ignored to check which files are not to be published?
I have recently tried to publish the go-ipfs sources to gx and had some hassles
In https://github.com/whyrusleeping/gx#ignoring-files-from-a-publish I read that
gx publish
ignores files that are ignored by git. An ipfs/go-ipfs repo contains around 56MB of binaries after some sharness tests are run. I had togit clean -x
before publishing in order to avoid publishing those.Probably gx should leave it to
git status --ignored
to check which files are not to be published?