Javi Fontan

Results 40 comments of Javi Fontan

There could be a default license, maybe public domain but the users can specify a different license in the comments. Also the license can be shown only for effects created...

Created a helper shell script to run cangallo in a container instead of adding functionality to cangallo itself. ``` Execute cangallo in a docker container. NOTE: The commands can only...

I am doing the same exercise as you did and found the same problems. I'm working on alleviating it, at least for Ubuntu 14.04. The following issues are created to...

I've updated a new version (0.0.2) that supports `libguestfs` 0.28 except for `copy` command. Instructions to install dependencies in Ubuntu 14.04 are here: https://canga.io/install/

I've started a go-billy fs that uses afero as a backend. Still needs documentation but you should be able to wrap it with: ```go billyfs := desfacer.New(aferofs) ``` https://github.com/jfontan/go-billy-desfacer

It seems that the error in tests is caused by go versions used. Sent a PR (#76) changing go versions for tests to the two latest ones and seems to...

I've tested downloading a Linux kernel and works fine with `https` but fails using `ssh`. It may be a problem of the transport that expects the connection open after the...

Thanks for the patch! @kcburge, are you able to iterate over all the objects after that change? I believe this change fixes index creation but there may be more problems.

AFAIK gitignore is only used for `worktree.Status()`. You'll have to do the filtering yourself. As an example the code that does the filtering for status is here: https://github.com/src-d/go-git/blob/25e9f61108d7097d6614872b4d65e15f4cb581fa/worktree_status.go#L143 It would...

From what I understand most of the files reside in the common `.git` filesystem so I would use the second alternative (`Filesystem` and `LocalFilesystem`). We currently use `Filesystem` to do...