Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | plumbing: packfile, open and close packfile on FSObject reads | Miguel Molina | 2018-08-09 | 1 | -0/+5 |
| | | | | Signed-off-by: Miguel Molina <miguel@erizocosmi.co> | ||||
* | plumbing: packfile, allow non-seekable sources on Parser | Miguel Molina | 2018-08-08 | 1 | -1/+6 |
| | | | | Signed-off-by: Miguel Molina <miguel@erizocosmi.co> | ||||
* | plumbing, storage: integrate new index | Javi Fontan | 2018-07-26 | 2 | -19/+17 |
| | | | | | | Now dotgit.PackWriter uses the new packfile.Parser and index. Signed-off-by: Javi Fontan <jfontan@gmail.com> | ||||
* | storage/filesystem: avoid norwfs build flag | Santiago M. Mola | 2018-06-21 | 5 | -94/+82 |
| | | | | | | | | | | | | | | | | | norwfs build flag was used to work on filesystems that do not support neither opening a file in read/write mode or renaming a file (e.f. sivafs). This had two problems: - go-git could not be compiled to work properly both with regular filesystems and limited filesystems at the same time. - the norwfs trick was not available on Windows. This PR removes the norwfs build flag, as well as the windows conditional flag on the dotgit package. For the file open mode, we use the new billy capabilities, to check at runtime if the filesystem supports opening a file in read/write mode or not. For the renaming, we just try and fallback to alternative methods if billy.ErrNotSupported is returned. Signed-off-by: Santiago M. Mola <santi@mola.io> | ||||
* | dotgit: Move package outside internal. | Antonio Jesus Navarro Perez | 2018-06-05 | 9 | -0/+2112 |
Signed-off-by: Antonio Jesus Navarro Perez <antnavper@gmail.com> |