- 17 Jun, 2013 1 commit
-
-
Also fixed an assert typo on nulltoken's HEAD
yorah committed
-
- 15 May, 2013 1 commit
-
-
nulltoken committed
-
- 11 May, 2013 1 commit
-
-
There was a problem found in the Rugged test suite where the refdb_fs_backend__next function could exit too early in some very specific hashing patterns for packed refs. This ports the Rugged test to libgit2 and then fixes the bug.
Russell Belfer committed
-
- 10 May, 2013 1 commit
-
-
nulltoken committed
-
- 06 May, 2013 1 commit
-
-
Currently git_branch_set_upstream when passed a local branch creates invalid configuration, for ex. if we setup branch 'tracking_master' to track local 'master' libgit2 generates the following config ``` [branch "track_master"] remote = . merge = .refs/heads/track_master ``` The merge value is invalid and calling git_branch_upstream on 'tracking_master' results in invalid reference error. It should do: ``` [branch "track_master"] remote = . merge = refs/heads/master ```
Nikolai Vladimirov committed
-
- 01 May, 2013 1 commit
-
-
There were a couple of places where an error was being returned from branch related code but no error message was being set.
Russell Belfer committed
-
- 20 Apr, 2013 2 commits
-
-
Introduce git_remote_{fetch,push}_refspecs() to get a list of refspecs from the remote and rename the refspec-adding functions to a less silly name. Use this instead of the vector index hacks in the tests.
Carlos Martín Nieto committed -
A remote can have a multitude of refspecs. Up to now our git_remote's have supported a single one for each fetch and push out of simplicity to get something working. Let the remotes and internal code know about multiple remotes and get the tests passing with them. Instead of setting a refspec, the external users can clear all and add refspecs. This should be enough for most uses, though we're still missing a querying function.
Carlos Martín Nieto committed
-
- 11 Apr, 2013 1 commit
-
-
Add functions to set and unset the upstream configuration to complement the getter we already have.
Carlos Martín Nieto committed
-
- 31 Mar, 2013 1 commit
-
-
Return the size we'd need to write to instead of simply an error. Split the function into two to be used later by the upstream configuration functions.
Carlos Martín Nieto committed
-
- 30 Mar, 2013 1 commit
-
-
The term 'tracking' is overloaded. Help distinguish what we mean by using 'upstream' for this part of the library.
Carlos Martín Nieto committed
-
- 07 Mar, 2013 1 commit
-
-
Edward Thomson committed
-
- 26 Feb, 2013 1 commit
-
-
The new tests were not taking core.filemode into account when testing file modes after repo initialization. Fixed that and some other Windows warnings that have crept in.
Russell Belfer committed
-
- 22 Feb, 2013 2 commits
- 11 Feb, 2013 1 commit
-
-
Jameson Miller committed
-
- 05 Feb, 2013 1 commit
-
-
Fix #1308
nulltoken committed
-
- 25 Jan, 2013 2 commits
-
-
Replaced all cl_assert(!strcmp()) or semantically equivalent forms by cl_assert_equal_s().
Sebastian Bauer committed -
This is a convenience function to get the branch name of a given ref. The returned branch name is compatible with the name that can be supplied e.g. to git_branch_lookup(). That is, the prefixes "refs/heads" or "refs/remotes" are omitted. Also added a new test for testing the new function.
Sebastian Bauer committed
-
- 16 Jan, 2013 1 commit
-
-
nulltoken committed
-
- 10 Dec, 2012 1 commit
-
-
Ben Straub committed
-
- 01 Dec, 2012 2 commits
- 30 Nov, 2012 1 commit
-
-
Ben Straub committed
-
- 28 Nov, 2012 2 commits
- 27 Nov, 2012 3 commits
-
-
Ben Straub committed
-
Conflicts: src/branch.c tests-clar/refs/branches/create.c
Vicent Marti committed -
Ben Straub committed
-
- 23 Nov, 2012 1 commit
-
-
Without this change, any failed assertion in the second (or a later) test inside a test suite has a chance of double deleting memory, resulting in a heap corruption. See #1096 for details. This leaves alone the test cases where we "just" use cl_git_sandbox_init() and cl_git_sandbox_cleanup(). These methods already take good care to not double delete a repository. Fixes #1096
Sascha Cunz committed
-
- 11 Nov, 2012 1 commit
-
-
nulltoken committed
-
- 25 Oct, 2012 2 commits
- 20 Oct, 2012 2 commits
- 19 Oct, 2012 2 commits
- 11 Oct, 2012 2 commits
- 07 Oct, 2012 1 commit
-
-
nulltoken committed
-