Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added helper function for test fixture unpacking | Joshua Sjoding | 2016-02-18 | 1 | -2/+29 |
| | |||||
* | travis: adding 1.6 | Máximo Cuadros | 2016-02-18 | 1 | -1/+2 |
| | |||||
* | signature decode refactor | Máximo Cuadros | 2016-02-18 | 1 | -50/+37 |
| | |||||
* | Merge pull request #30 from scjalliance/consistent-iterators | Máximo Cuadros | 2016-02-17 | 11 | -69/+413 |
|\ | | | | | Improved consistency of Tree iterators | ||||
| * | Tree.Entries is now a slice | Joshua Sjoding | 2016-02-17 | 2 | -23/+27 |
| | | | | | | | | Tree's mapping of names to entries has been made internal, and will only be built when necessary with the first call to Tree.File(). | ||||
| * | New iteration behavior via FileIter and TreeWalker | Joshua Sjoding | 2016-02-17 | 11 | -62/+402 |
|/ | | | | | | | | | | | | | | | | | | | | | | Instead of returning a channel of files, Tree.Files() now returns a FileIter with these qualities: * It returns files in the original order of the repository (relying on a * new Tree.OrderedNames property) * It can return errors encountered when retrieving files and trees from * underlying storage * It can be Closed without having to drain the entire channel * It defers the heavy lifting to a new TreeWalker type * Its behavior is a little more consistent with other Iter types * It's a little less prone to memory leaks This update includes a new TreeWalker type that will iterate through all of the entries of a tree and its descendant subtrees. It does the dirty work that Tree.walkEntries() used to do, but with a public API. A new TreeIter type is also included that just walks through subtrees. This could be useful for performing a directory search while ignoring files/blobs altogether. | ||||
* | update imports to v3 | Máximo Cuadros | 2016-02-17 | 36 | -64/+64 |
| | |||||
* | Merge pull request #28 from mcuadros/memory-object | Máximo Cuadros | 2016-02-17 | 14 | -97/+289 |
|\ | | | | | storages: memory object | ||||
| * | storages: memory object | Máximo Cuadros | 2016-02-17 | 14 | -97/+289 |
|/ | |||||
* | Merge pull request #27 from scjalliance/windows-compatibility | Máximo Cuadros | 2016-02-16 | 1 | -3/+3 |
|\ | | | | | File paths will now be consistent across platforms | ||||
| * | File paths will now be consistent across platforms | Joshua Sjoding | 2016-02-16 | 1 | -3/+3 |
|/ | | | | | | | | Previously go-git used filepath.Join when walking tree structures and constructing paths, but its results are platform-dependent as it will return different results on different systems. For example, it will use backslashes as a path separator on Windows. As a result the SuiteTree.TestFiles test was failing on Windows because the returned paths didn't match what was expected. filepath.Join has been changed to path.Join, which will return consistent results for all platforms. This change makes it so that go-git will always return paths with forward-slash delimiters. Users of the library should convert the resulting file paths into platform-compatible paths when necessary. | ||||
* | Merge pull request #20 from scjalliance/generic-object-storage | Máximo Cuadros | 2016-02-16 | 7 | -101/+274 |
|\ | | | | | Iterable ObjectStorage interface for use in Repository struct | ||||
| * | Functions in core.ObjectStorage interface now return an error | Joshua Sjoding | 2016-02-16 | 6 | -41/+62 |
| | | |||||
| * | Merge remote-tracking branch 'upstream/master' into generic-object-storage | Joshua Sjoding | 2016-02-15 | 8 | -69/+75 |
| |\ | |||||
| * | | ObjectLookupIter.Next() now returns ObjectNotFoundErr when appropriate | Joshua Sjoding | 2016-02-15 | 1 | -3/+9 |
| | | | |||||
| * | | Added tests for CommitIter | Joshua Sjoding | 2016-02-15 | 1 | -7/+87 |
| | | | |||||
| * | | Renamed ObjectStorage.IterType() to Iter() and improved documentation for ↵ | Joshua Sjoding | 2016-02-15 | 2 | -6/+15 |
| | | | | | | | | | | | | object iterators | ||||
| * | | Merge remote-tracking branch 'upstream/master' into generic-object-storage | Joshua Sjoding | 2016-02-01 | 5 | -16/+116 |
| |\ \ | |||||
| * | | | Renamed ObjectStorage Iter function to IterType | Joshua Sjoding | 2016-02-01 | 2 | -3/+3 |
| | | | | |||||
| * | | | Repository now works against the generic ObjectStore interface | Joshua Sjoding | 2016-01-23 | 5 | -65/+122 |
| | | | | |||||
* | | | | remove package docv2.2.0 | Máximo Cuadros | 2016-02-16 | 6 | -40/+27 |
| | | | | |||||
* | | | | remove blame package header | Máximo Cuadros | 2016-02-16 | 3 | -3/+8 |
|\ \ \ \ | |||||
| * \ \ \ | Merge pull request #25 from shawnps/patch-1 | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| |\ \ \ \ | | | | | | | | | | | | | fix typo | ||||
| | * | | | | fix typo | Shawn Smith | 2016-02-17 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Merge pull request #24 from shawnps/master | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | gofmt -s | ||||
| | * | | | | | gofmt -s | Shawn Smith | 2016-02-17 | 1 | -1/+1 |
| | |/ / / / | |||||
| * | | | | | Merge pull request #26 from shawnps/patch-2 | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| |\ \ \ \ \ | | |/ / / / | |/| | | | | fix typo | ||||
| | * | | | | fix typo | Shawn Smith | 2016-02-17 | 1 | -1/+1 |
| |/ / / / | |||||
| * | | | | Merge pull request #22 from alcortesm/master | Máximo Cuadros | 2016-02-16 | 1 | -0/+5 |
| |\ \ \ \ | | | | | | | | | | | | | add blame comment to readme and fix typo | ||||
| | * | | | | [README] Adds Coming Soon section | Alberto Cortés | 2016-02-16 | 1 | -1/+6 |
| | | | | | | |||||
| * | | | | | Merge pull request #23 from mvader/patch-1 | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| |\ \ \ \ \ | | |/ / / / | |/| | | | | Typo on README | ||||
| | * | | | | Update README.md | Miguel Molina | 2016-02-16 | 1 | -1/+1 |
| |/ / / / | |||||
* / / / / | package documentation | Máximo Cuadros | 2016-02-16 | 2 | -8/+27 |
|/ / / / | |||||
* | | | | readme: Acknowledgements | Máximo Cuadros | 2016-02-16 | 1 | -0/+6 |
| | | | | |||||
* | | | | readme: codebeat badge | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| | | | | |||||
* | | | | documentation | Máximo Cuadros | 2016-02-16 | 0 | -0/+0 |
|\ \ \ \ | |||||
| * \ \ \ | Merge pull request #21 from marcinwyszynski/patch-1 | Máximo Cuadros | 2016-02-16 | 1 | -1/+1 |
| |\ \ \ \ | | | | | | | | | | | | | Add codebeat badge | ||||
| | * | | | | Add codebeat badge | Marcin Wyszynski | 2016-02-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Brilliant piece of Go code, congrats! Out of curiosity - have you tried benchmarking this against Golang's libgit2 bindings running from ramdisk? For a small side project where I needed `git blame` functionality I got 10-20x speed boost from doing just that. | ||||
* | | | | | | documentation | Máximo Cuadros | 2016-02-16 | 2 | -0/+93 |
|/ / / / / | |||||
* | | | | | examples: basic | Máximo Cuadros | 2016-02-16 | 1 | -0/+41 |
| | | | | | |||||
* | | | | | repository: documentation | Máximo Cuadros | 2016-02-16 | 1 | -0/+3 |
|/ / / / | |||||
* | | / | travis: allow_failures | Máximo Cuadros | 2016-02-16 | 1 | -0/+4 |
| |_|/ |/| | | |||||
* | | | core.Type stringer improved | Máximo Cuadros | 2016-02-15 | 1 | -1/+7 |
| | | | |||||
* | | | clients: skip ssh test when SSH_AUTH_SOCK is not present | Máximo Cuadros | 2016-02-13 | 2 | -10/+16 |
| | | | |||||
* | | | clients: cleanup | Máximo Cuadros | 2016-02-11 | 1 | -17/+10 |
| | | | |||||
* | | | Merge branch 'master' of github.com:src-d/go-git | Máximo Cuadros | 2016-02-11 | 2 | -12/+38 |
|\ \ \ | | |/ | |/| | |||||
| * | | Merge pull request #18 from ivanfoo/master | Máximo Cuadros | 2016-01-27 | 1 | -1/+4 |
| |\ \ | | | | | | | | | added default shell to makefile | ||||
| | * | | added default shell to makefile | ivanfoo | 2016-01-27 | 1 | -1/+4 |
| |/ / | | | | | | | | | | changed if to a more standard syntax | ||||
| * | | ci | Máximo Cuadros | 2016-01-27 | 2 | -12/+35 |
| | | | |||||
* | | | clients: removing url from the clients constructor | Máximo Cuadros | 2016-02-11 | 6 | -46/+47 |
|/ / |