Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reflog: constify byindex | Carlos Martín Nieto | 2014-09-30 | 1 | -1/+1 |
| | |||||
* | Fixed miscellaneous documentation errors. | Michael Anderson | 2014-05-23 | 1 | -1/+1 |
| | |||||
* | reflog: remove git_reflog_append_to() | Carlos Martín Nieto | 2013-11-23 | 1 | -18/+1 |
| | | | | | | This was a convenience method for the refs front-end to do the reflog writing. This is now done in the backend and it has no more reason for being. | ||||
* | reflog: add a convenience append function | Carlos Martín Nieto | 2013-10-02 | 1 | -0/+17 |
| | | | | | Provide a function that reads a reflog, performs an append and writes back to the backend in one call. | ||||
* | reflog: move the reflog implementation into refdb_fs | Carlos Martín Nieto | 2013-10-02 | 1 | -8/+11 |
| | | | | | | | | | | References and their logs are logically coupled, let's make it so in the code by moving the fs-based reflog implementation to live next to the fs-based refs one. As part of the change, make the function take names rather than references, as only the names are relevant when looking up and handling reflogs. | ||||
* | update copyrights | Edward Thomson | 2013-01-08 | 1 | -1/+1 |
| | |||||
* | reflog: Deploy EINVALIDSPEC usage | nulltoken | 2012-12-01 | 1 | -1/+4 |
| | |||||
* | Rename ref and reflog apis for consistency | Ben Straub | 2012-11-27 | 1 | -12/+12 |
| | |||||
* | reflog: make entry_byindex() and drop() git compliant | nulltoken | 2012-11-17 | 1 | -3/+8 |
| | | | | | Passing 0 as the index now retrieves the most recent entry instead of the oldest one. | ||||
* | reflog: Fix documentation | nulltoken | 2012-11-17 | 1 | -1/+2 |
| | |||||
* | reflog: fix documentation typos | nulltoken | 2012-10-26 | 1 | -3/+3 |
| | |||||
* | Merge remote-tracking branch 'nulltoken/topic/amd64-compat' into development | Vicent Marti | 2012-08-02 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | Conflicts: src/netops.c src/netops.h src/oid.c | ||||
| * | portability: Improve x86/amd64 compatibility | nulltoken | 2012-07-24 | 1 | -1/+1 |
| | | |||||
* | | reflog: Rename `entry_drop` to `drop` | Vicent Marti | 2012-07-27 | 1 | -1/+1 |
| | | |||||
* | | reflog: prevent git_reflog_append() from persisting the reflog back to disk | nulltoken | 2012-07-25 | 1 | -9/+4 |
| | | |||||
* | | reflog: prevent git_reflog_read() from chocking when no log exists yet | nulltoken | 2012-07-25 | 1 | -0/+4 |
| | | |||||
* | | reflog: introduce git_reflog_write() | nulltoken | 2012-07-25 | 1 | -0/+9 |
| | | |||||
* | | reflog: rename git_reflog_write() to git_reflog_append() | nulltoken | 2012-07-25 | 1 | -2/+2 |
| | | |||||
* | | reflog: introduce git_reflog_entry_drop() | nulltoken | 2012-07-25 | 1 | -0/+20 |
|/ | |||||
* | refs: deploy git_reference_has_log() | nulltoken | 2012-07-07 | 1 | -0/+2 |
| | |||||
* | errors: Rename the generic return codes | Vicent Martí | 2012-05-18 | 1 | -4/+4 |
| | |||||
* | Update Copyright header | schu | 2012-02-13 | 1 | -1/+1 |
| | | | | Signed-off-by: schu <schu-github@schulog.org> | ||||
* | Add git_reflog_rename() and git_reflog_delete() | schu | 2011-11-21 | 1 | -0/+17 |
| | | | | Signed-off-by: schu <schu-github@schulog.org> | ||||
* | Cleanup legal data | Vicent Marti | 2011-09-19 | 1 | -21/+3 |
| | | | | | | | | | | 1. The license header is technically not valid if it doesn't have a copyright signature. 2. The COPYING file has been updated with the different licenses used in the project. 3. The full GPLv2 header in each file annoys me. | ||||
* | Standardized doxygen @return lines for int functions to say "GIT_SUCCESS or ↵ | David Boyce | 2011-09-13 | 1 | -2/+2 |
| | | | | an error code". | ||||
* | reflog: assimilate reflog API to return git_oid's | schu | 2011-08-15 | 1 | -2/+2 |
| | | | | | | | Rather than returning the OIDs out of the reflog as string return them as git_oid. Signed-off-by: schu <schu-github@schulog.org> | ||||
* | include: Fix unmatched params in documentation | Vicent Marti | 2011-07-11 | 1 | -1/+1 |
| | |||||
* | reflog: add API to read or write a reference log | schu | 2011-07-09 | 1 | -0/+129 |
So far libgit2 didn't support reference logs (reflog). Add a new git_reflog_* API for basic reading and writing of reflogs: * git_reflog_read * git_reflog_write * git_reflog_free Signed-off-by: schu <schu-github@schulog.org> |