Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #672 from ferhatelmas/gofmt-s | Máximo Cuadros | 2017-12-01 | 12 | -22/+22 |
|\ | | | | | all: gofmt -s | ||||
| * | all: gofmt -s | ferhat elmas | 2017-11-30 | 12 | -22/+22 |
| | | |||||
* | | Merge pull request #669 from keybase/strib/gh-gc | Máximo Cuadros | 2017-12-01 | 15 | -74/+928 |
|\ \ | |/ |/| | storage/repository: add new functions for garbage collection | ||||
| * | dotgit: rewrite packed-refs while holding lock | Jeremy Stribling | 2017-11-30 | 3 | -60/+103 |
| | | | | | | | | | | | | Windows file system doesn't let us rename over a file while holding that file's lock, so use rewrite as a last resort. It could result in a partially-written file, if there's a failure at the wrong time. | ||||
| * | dotgit: open+lock packed-refs file until it doesn't change | Jeremy Stribling | 2017-11-29 | 1 | -18/+46 |
| | | | | | | | | Windows doesn't like it when we re-open a file we already have locked. | ||||
| * | repository: oops, fix the prune test | Jeremy Stribling | 2017-11-29 | 1 | -2/+3 |
| | | |||||
| * | repository: add tests for pruning and object re-packing | Jeremy Stribling | 2017-11-29 | 3 | -0/+150 |
| | | | | | | | | | | Also, object re-packing should clean up any loose objects that were packed. | ||||
| * | storer: separate loose and packed object mgmt into optional ifaces | Jeremy Stribling | 2017-11-29 | 4 | -49/+58 |
| | | | | | | | | Suggested by mcuadros. | ||||
| * | storage: some minor code cleanup | Jeremy Stribling | 2017-11-29 | 3 | -13/+5 |
| | | | | | | | | | | | | Suggested by mcuadros. Issue: #669 | ||||
| * | plumbing: add `HasEncodedObject` method to Storer | Jeremy Stribling | 2017-11-29 | 3 | -0/+43 |
| | | | | | | | | | | | | | | This allows the user to check whether an object exists, without reading all the object data from storage. Issue: KBFS-2445 | ||||
| * | Use object walker in repacking code | Taru Karttunen | 2017-11-29 | 1 | -12/+9 |
| | | |||||
| * | Make prune object walker generic | Taru Karttunen | 2017-11-29 | 2 | -91/+107 |
| | | |||||
| * | Use Storer.Config pack window when repacking objects | Taru Karttunen | 2017-11-29 | 1 | -3/+5 |
| | | |||||
| * | Make object repacking more configurable | Taru Karttunen | 2017-11-29 | 6 | -15/+44 |
| | | |||||
| * | Support for repacking objects | Taru Karttunen | 2017-11-29 | 6 | -13/+107 |
| | | |||||
| * | Address CI and move code around | Taru Karttunen | 2017-11-29 | 3 | -126/+149 |
| | | |||||
| * | First pass of prune design | Taru Karttunen | 2017-11-29 | 6 | -10/+236 |
| | | |||||
| * | dotgit: use bufio for PackRefs | Jeremy Stribling | 2017-11-29 | 1 | -10/+8 |
| | | | | | | | | | | | | Suggested by taruti. Issue: #13 | ||||
| * | dotgit: during rewriting, re-open packed-refs after locking | Jeremy Stribling | 2017-11-29 | 1 | -9/+21 |
| | | | | | | | | | | | | The file could have been completely replaced while waiting for the lock, so we need to re-open, otherwise we might be reading a stale file that has already been deleted/overwritten. | ||||
| * | filesystem: todo comment about "all" param | Jeremy Stribling | 2017-11-29 | 1 | -0/+4 |
| | | | | | | | | Issue: KBFS-2517 | ||||
| * | dotgit: fix up PackRefs comment for upstreaming | Jeremy Stribling | 2017-11-29 | 1 | -26/+8 |
| | | |||||
| * | filesystem: implement PackRefs() | Jeremy Stribling | 2017-11-29 | 5 | -0/+205 |
| | | | | | | | | | | | | | | | | | | | | Currently this implementation is only valid for kbfsgit, since it assumes some things about the filesystem not being updated during the packing, and about conflict resolution rules. In the future, it would be nice to replace this with a more general one, and move this kbfsgit-optimized implementation into kbfsgit. Issue: KBFS-2517 | ||||
* | | Merge pull request #668 from src-d/eiso-patch-1 | Máximo Cuadros | 2017-11-29 | 1 | -7/+6 |
|\ \ | |/ |/| | Updating the outdated README example to the new one | ||||
| * | Updating the outdated example to the new one | Eiso Kant | 2017-11-29 | 1 | -7/+6 |
| | | |||||
* | | Merge pull request #667 from ferhatelmas/simplify | Máximo Cuadros | 2017-11-29 | 27 | -118/+56 |
|\ \ | | | | | | | all: simplification | ||||
| * | | all: simplification | ferhat elmas | 2017-11-29 | 27 | -118/+56 |
|/ / | | | | | | | | | | | | | | | | | | | - no length for map initialization - don't check for boolean/error return - don't format string - use string method of bytes buffer instead of converting bytes to string - use `strings.Contains` instead of `strings.Index` - use `bytes.Equal` instead of `bytes.Compare` | ||||
* | | Merge pull request #665 from keybase/strib/gh-fast-forward-fetch | Máximo Cuadros | 2017-11-29 | 10 | -22/+205 |
|\ \ | | | | | | | remote: support for non-force, fast-forward-only fetches | ||||
| * | | dotgit: add CheckAndSetReference tests | Jeremy Stribling | 2017-11-28 | 4 | -13/+50 |
| | | | |||||
| * | | Merge remote-tracking branch 'src-d/master' into gh-fast-forward-fetch | Jeremy Stribling | 2017-11-28 | 2 | -6/+76 |
| |\ \ | |/ / |/| | | |||||
* | | | Merge pull request #666 from keybase/strib/delete-from-packed-ref | Jeremy Stribling | 2017-11-28 | 2 | -6/+76 |
|\ \ \ | | | | | | | | | dotgit: handle refs that exist in both packed-refs and a loose ref file | ||||
| * | | | dotgit: don't list references twice | Jeremy Stribling | 2017-11-27 | 2 | -4/+20 |
| | | | | | | | | | | | | | | | | Restore the `seen` map that avoided listing packed-refs twice. | ||||
| * | | | dotgit: add a test for removing a ref from a file and packed-refs | Jeremy Stribling | 2017-11-27 | 1 | -0/+29 |
| | | | | |||||
| * | | | dotgit: remove loose ref AND packed ref, if both exist | Jeremy Stribling | 2017-11-27 | 1 | -3/+28 |
|/ / / | | | | | | | | | | Issue: KBFS-2509 | ||||
| * | | remote: add test for non-force, fast-forward fetching | Jeremy Stribling | 2017-11-27 | 1 | -0/+42 |
| | | | |||||
| * | | Fetch - honor per refspec force flag | Taru Karttunen | 2017-11-27 | 1 | -1/+1 |
| | | | |||||
| * | | Document Lock+Close usage | Taru Karttunen | 2017-11-27 | 1 | -0/+4 |
| | | | |||||
| * | | Use optionally locking when updating refs | Taru Karttunen | 2017-11-27 | 7 | -18/+87 |
| | | | |||||
| * | | Support non-force fetches | Nick Thomas | 2017-11-27 | 3 | -2/+33 |
|/ / | |||||
* | | Merge pull request #664 from orirawlings/fixTruncatedDoc | Máximo Cuadros | 2017-11-27 | 1 | -1/+1 |
|\ \ | | | | | | | plumbing/transport: Fix truncated comment in Endpoint | ||||
| * | | plumbing/transport: Fix truncated comment in Endpoint | Ori Rawlings | 2017-11-27 | 1 | -1/+1 |
|/ / | |||||
* | | Merge pull request #661 from ferhatelmas/ineffassign | Máximo Cuadros | 2017-11-27 | 8 | -2/+23 |
|\ \ | | | | | | | all: fixes for ineffective assign | ||||
| * | | all: fixes for ineffective assign | ferhat elmas | 2017-11-26 | 8 | -2/+23 |
|/ / | |||||
* | | Merge pull request #659 from ferhatelmas/verify-commit-compat-doc | Ori Rawlings | 2017-11-24 | 1 | -2/+2 |
|\ \ | | | | | | | doc: Update compatibility for commit/tag verify | ||||
| * | | doc: Update compatibility for commit/tag verify | ferhat elmas | 2017-11-24 | 1 | -2/+2 |
| | | | | | | | | | | | | For #653 and #658 | ||||
* | | | Merge pull request #658 from darkowlzz/tag_sign_and_verify | Ori Rawlings | 2017-11-24 | 3 | -7/+172 |
|\ \ \ | |/ / |/| | | plumbing: object/tag, add signature and verification support | ||||
| * | | plumbing: object/{commit,tag}, encode method with sig optional | Sunny | 2017-11-24 | 2 | -11/+14 |
| | | | | | | | | | | | | | | | Adds Commit.encode() and Tag.encode() with optional `includeSig` parameter to include or exclude signature from the encoded object. | ||||
| * | | plumbing: object/tag, add signature verification | Sunny | 2017-11-24 | 2 | -0/+94 |
| | | | |||||
| * | | plumbing: object/tag, add PGPSignature support | Sunny | 2017-11-24 | 2 | -1/+69 |
|/ / | |||||
* | | Merge pull request #657 from ajnavarro/fix/close-http-response | Máximo Cuadros | 2017-11-24 | 1 | -1/+3 |
|\ \ | | | | | | | plumbing: transport/http, Close http.Body reader when needed | ||||
| * | | Close http.Body reader when needed | Antonio Jesus Navarro Perez | 2017-11-24 | 1 | -1/+3 |
|/ / | | | | | | | If we don't do that, all the goroutines opened by the Body Reader are never closed, causing a 'fatal: morestack on g0' error. |