summaryrefslogtreecommitdiff
path: root/src/branch.c
Commit message (Collapse)AuthorAgeFilesLines
* branch: Change `git_branch_delete` to take a refbranch-delete-refVicent Marti2012-08-261-16/+15
|
* branch: Add `repository` argument to `create`Vicent Marti2012-07-271-2/+5
| | | | | Yes, we can get the repository from the owner of the object, but having it marked explicitly makes the API more consistent.
* branch: enforce git_branch_delete() parameter checkingnulltoken2012-07-241-0/+1
|
* branch: introduce git_branch_tracking()nulltoken2012-07-241-0/+68
|
* branch: make git_branch_move() reference basednulltoken2012-07-241-12/+16
|
* branch: introduce git_branch_lookup()nulltoken2012-07-241-0/+11
|
* branch: change git_branch_create() to make it return a referencenulltoken2012-07-241-9/+5
|
* branch: remove useless headernulltoken2012-07-241-1/+2
|
* branch: drop git_branch_list()nulltoken2012-06-211-43/+0
|
* branch: add git_branch_foreach()nulltoken2012-06-211-0/+43
|
* Fix issue #763Frederick Ros2012-06-131-3/+5
|
* Merge pull request #710 from libgit2/breaking-changesVicent Martí2012-05-181-1/+1
|\ | | | | Break everything before the release
| * errors: Rename error codesbreaking-changesVicent Martí2012-05-181-1/+1
| |
| * errors: Rename the generic return codesVicent Martí2012-05-181-1/+1
| |
| * Properly tag all `enums` with a `_t`Vicent Martí2012-05-181-1/+1
| |
* | branch: retrieve symbolic references when listing the branchesnulltoken2012-05-181-1/+1
|/
* branch: make git_branch_delete() return GIT_ENOTFOUND when the branch ↵nulltoken2012-05-131-1/+1
| | | | doesn't exist
* branch: simplify error handling for git_branch_move()Carlos Martín Nieto2012-04-121-18/+10
| | | | | The cleanup needs to happen anyway, so set the error code and jump there instead of copying the code.
* branch: plug leaks in git_branch_move() and _delete()Carlos Martín Nieto2012-04-121-14/+32
|
* Typedefs don't have enum in frontCarlos Martín Nieto2012-04-111-1/+1
|
* branch: add git_branch_move()nulltoken2012-04-101-0/+18
|
* Add basic branch management API: git_branch_create(), git_branch_delete(), ↵nulltoken2012-04-101-0/+180
git_branch_list()