Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | plumbing: Reference, support slash separated branch (#302) | Yusuke Hatanaka | 2017-03-28 | 2 | -2/+26 |
| | |||||
* | Merge pull request #305 from mvdan/history-reverse | Santiago M. Mola | 2017-03-27 | 2 | -7/+59 |
|\ | | | | | plumbing/object: add WalkCommitHistoryPost func | ||||
| * | plumbing/object: add WalkCommitHistoryPost func | Daniel Martí | 2017-03-27 | 2 | -7/+59 |
| | | | | | | | | | | | | | | | | Also add a test. Make both the pre-order and post-order tests not sort commits, to actually test the order in which the commit history is walked. Fixes #223. | ||||
* | | plumbing: ReferenceType as Stringer | Máximo Cuadros | 2017-03-22 | 2 | -0/+17 |
| | | |||||
* | | Merge pull request #296 from ajnavarro/improvement/repository | Santiago M. Mola | 2017-03-21 | 11 | -43/+426 |
|\ \ | | | | | | | git: Repository methods changes | ||||
| * | | Make referenceFilteredIter private | Antonio Jesus Navarro Perez | 2017-03-06 | 1 | -5/+5 |
| | | | |||||
| * | | git: Repository methods changes | Antonio Jesus Navarro Perez | 2017-03-06 | 11 | -43/+426 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To have a more consistent public API, we decided to rename some methods, and add others: - Commit method renamed to CommitObject - Commits method renamed to CommitObjects - Tree method renamed to TreeObject - Trees method renamed to TreeObjects - Tags method renamed to TagObjects - Tag method renamed to TagObject - Added method Tags that returns tag references - Added method Branches that returns branch references - Added method Notes that returns note references - Added BlobObject method - Added BlobObjects method Also, we added more functionality related to references: - Added iterator to iterate References with a specific filter Some notes: - #298 | ||||
* | | | forcing the usage of gopkg.in/src-d/go-git.v4 | Máximo Cuadros | 2017-03-13 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Merge pull request #303 from ajnavarro/fix/gopkg-in | Santiago M. Mola | 2017-03-10 | 195 | -483/+483 |
|\ \ | |/ |/| | project: move imports from srcd.works to gopkg.in | ||||
| * | use go-billy.v2 version | Antonio Jesus Navarro Perez | 2017-03-10 | 17 | -23/+23 |
| | | |||||
| * | project: move imports from srcd.works to gopkg.in | Antonio Jesus Navarro Perez | 2017-03-07 | 195 | -483/+483 |
|/ | | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release. | ||||
* | Merge pull request #300 from alcortesm/improvement-difftree-simplify-deprecated | Máximo Cuadros | 2017-03-04 | 3 | -51/+31 |
|\ | | | | | difftree: simplify hash comparison with deprecated files modes | ||||
| * | difftree: simplify hash comparison with deprecated files modes | Alberto Cortés | 2017-03-03 | 3 | -51/+31 |
| | | | | | | | | | | | | | | | | | | | | Difftree hash comparisson was quite complex because the hashes of deprecated files were diferent from the hashes of regular files. But git's difftree really treat them as equal. This patch fix this by making treenoder return the same hash for regular files than for deprecated files; now the hash comparison function is just a bytes.Equal call. | ||||
* | | Merge pull request #295 from ajnavarro/improvement/package-git-doc | Antonio Navarro Perez | 2017-03-03 | 3 | -42/+52 |
|\ \ | |/ |/| | improve git package documentation (fix #231) | ||||
| * | Simplify Blame documentation | Antonio Jesus Navarro Perez | 2017-03-03 | 1 | -25/+26 |
| | | |||||
| * | Add full stops and keep implementation details as internal comments. | Antonio Jesus Navarro Perez | 2017-03-03 | 3 | -8/+14 |
| | | |||||
| * | improve git package documentation (fix #231) | Antonio Jesus Navarro Perez | 2017-03-03 | 3 | -21/+24 |
| | | |||||
* | | Merge pull request #299 from ajnavarro/fix/read-all | Santiago M. Mola | 2017-03-03 | 2 | -5/+5 |
|\ \ | | | | | | | Return values of Read not checked (fix #65) | ||||
| * | | Return values of Read not checked (fix #65) | Antonio Jesus Navarro Perez | 2017-03-02 | 2 | -5/+5 |
| |/ | |||||
* | | Merge pull request #297 from alcortesm/issue274 | Santiago M. Mola | 2017-03-03 | 16 | -283/+784 |
|\ \ | |/ |/| | issue #274: new filemode package | ||||
| * | replace os.FileMode use with filemode.FileMode | Alberto Cortés | 2017-03-01 | 14 | -283/+248 |
| | | |||||
| * | new filemode package | Alberto Cortés | 2017-03-01 | 2 | -0/+536 |
| | | |||||
* | | Merge pull request #293 from ajnavarro/improvement/examples | Máximo Cuadros | 2017-03-01 | 8 | -2/+29 |
|\ \ | |/ |/| | _examples: improve documentation (fix #238) | ||||
| * | Fix typos | Antonio Jesus Navarro Perez | 2017-02-28 | 2 | -6/+6 |
| | | |||||
| * | _examples: improve documentation | Antonio Jesus Navarro Perez | 2017-02-28 | 8 | -2/+29 |
| | | |||||
* | | Merge pull request #294 from ajnavarro/improvement/todos-documentation | Santiago M. Mola | 2017-03-01 | 7 | -16/+22 |
|\ \ | | | | | | | Remove TODOs from documentation | ||||
| * | | Remove TODOs from documentation | Antonio Jesus Navarro Perez | 2017-02-28 | 7 | -16/+22 |
| |/ | |||||
* | | Merge pull request #292 from ajnavarro/improvement/revlist | Máximo Cuadros | 2017-02-28 | 5 | -98/+144 |
|\ \ | |/ |/| | plumbing/revlist: input as a slice of hashes instead of commits | ||||
| * | plumbing/revlist: input as a slice of hashes instead of commits | Antonio Jesus Navarro Perez | 2017-02-27 | 5 | -98/+144 |
| | | | | | | | | | | | | | | - Now the input of the method Objects inside revlist package is a slice of hashes instead of commits. Hashes can be from Blobs, Trees and Commits objects. - ObjectStorer now is used to obtain the object content using hashes slice. - This PR fix #222. Now a test into upload_pack_test.go file is not skipped anymore. - Remove code from remote.go and server.go that is not necessary. | ||||
* | | Merge pull request #289 from ajnavarro/documentation/cache | Santiago M. Mola | 2017-02-27 | 3 | -16/+21 |
|\ \ | | | | | | | plumbing/cache: specify units in memory size (Fix #234) | ||||
| * | | plumbing/cache: specify units in memory size (Fix #234) | Antonio Jesus Navarro Perez | 2017-02-27 | 3 | -16/+21 |
| |/ | |||||
* | | Merge pull request #288 from ajnavarro/documentation/plumbing | Máximo Cuadros | 2017-02-27 | 7 | -11/+56 |
|\ \ | |/ |/| | plumbing: improve documentation (Fix #242) | ||||
| * | plumbing: improve documentation (Fix #242) | Antonio Jesus Navarro Perez | 2017-02-23 | 7 | -11/+56 |
| | | |||||
* | | Merge pull request #284 from ajnavarro/improvement/move-difftree-to-object | Máximo Cuadros | 2017-02-24 | 8 | -66/+67 |
|\ \ | | | | | | | plumbing/object: move difftree to object package | ||||
| * | | Added documentation to Diff method | Antonio Jesus Navarro Perez | 2017-02-24 | 1 | -0/+1 |
| | | | |||||
| * | | plumbing/object: move difftree to object package | Antonio Jesus Navarro Perez | 2017-02-24 | 8 | -66/+66 |
|/ / | | | | | | | | | - To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object. | ||||
* | | Merge pull request #287 from ajnavarro/improvement/fast-finish | Máximo Cuadros | 2017-02-24 | 1 | -0/+1 |
|\ \ | | | | | | | Add fast_finish flag to travis configuration | ||||
| * | | Add fast_finish flag to travis configuration | Antonio Jesus Navarro Perez | 2017-02-23 | 1 | -0/+1 |
| |/ | | | | | | | | | | | | | This flag allows us to improve the time spent in travis test execution if: - A build job fails, the build is mark as failed immediately, not waiting to finish the rest of the jobs. - All Build jobs pass. Travis will not wait to Allowed failures jobs to mark the PR as OK. | ||||
* | | Merge pull request #286 from ajnavarro/fix/reference-iterator | Máximo Cuadros | 2017-02-24 | 2 | -1/+25 |
|\ \ | | | | | | | plumbing/storer: referenceIterator now returns the error if any | ||||
| * | | plumbing/storer: referenceIterator now returns the error if any | Antonio Jesus Navarro Perez | 2017-02-23 | 2 | -1/+25 |
| |/ | |||||
* | | Merge pull request #285 from alcortesm/fix-issue-279 | Máximo Cuadros | 2017-02-24 | 3 | -9/+72 |
|\ \ | |/ |/| | Fix issue 279 | ||||
| * | difftree: ignore permissions changes between regular files | Alberto Cortés | 2017-02-22 | 2 | -6/+45 |
| | | | | | | | | Fix issue #279. | ||||
| * | test for issue 279 | Alberto Cortés | 2017-02-22 | 2 | -4/+28 |
|/ | |||||
* | Fix issue 275 (edited) (#276) | Alberto Cortés | 2017-02-22 | 8 | -81/+302 |
| | | | | | | | | | Fix #275 . It was not possible to write a test for this issue as the original fsnoder didn't support filenames with length > 1. Therefore this patch has 3 commits: add support for long filenames in fsnoder. add a test case for the issue using the new long filenames from step 1. fix the issue by comparing paths level by level instead of lexigographically over the whole path. | ||||
* | Merge pull request #283 from mcuadros/travis | Máximo Cuadros | 2017-02-21 | 2 | -3/+3 |
|\ | | | | | travis update to 1.8 and makefile silence commands | ||||
| * | travis update to 1.8 and makefile silence commands | Máximo Cuadros | 2017-02-21 | 2 | -3/+3 |
| | | |||||
* | | Merge pull request #282 from mcuadros/ssh-agent-fix | Máximo Cuadros | 2017-02-21 | 2 | -3/+26 |
|\ \ | |/ |/| | plumbing/transport: git, error on empty SSH_AUTH_SOCK | ||||
| * | plumbing/transport: git, error on empty SSH_AUTH_SOCK | Máximo Cuadros | 2017-02-21 | 2 | -3/+26 |
| | | |||||
* | | *: update tests to meet new submodule fixture | Máximo Cuadros | 2017-02-21 | 3 | -16/+6 |
| | | |||||
* | | plumbing/transport: client avoid panics on nil protocol | Máximo Cuadros | 2017-02-21 | 2 | -16/+26 |
|/ |