- 07 Dec, 2014 2 commits
-
-
Linquize committed
-
Fix negative ignores withing ignored dirs
Edward Thomson committed
-
- 06 Dec, 2014 6 commits
-
-
doc: add documentation to all the public structs and enums
Edward Thomson committed -
Adjust the local transport for the common refspec parser
Edward Thomson committed -
Notes API consistency fixes
Edward Thomson committed -
The iterator is the last argument. There is also no returned notes, just ids, so the comment about freeing is out of place.
Carlos Martín Nieto committed -
Make it consistent between git_note_create() and git_note_remote() by putting it after the repository.
Carlos Martín Nieto committed -
This makes them show up in the reference, even if the text itself isn't the most descriptive. These have been found with grep -Przon '\n\ntypedef struct.*?\{' -- include grep -Przon '\n\ntypedef enum.*?\{' -- include
Carlos Martín Nieto committed
-
- 05 Dec, 2014 7 commits
-
-
A rule can only negate something which was explicitly mentioned in the rules before it. Change our parsing to ignore a negative rule which does not negate something mentioned in the rules above it. While here, fix a wrong allocator usage. The memory for the match string comes from pool allocator. We must not free it with the general allocator. We can instead simply forget the string and it will be cleaned up.
Carlos Martín Nieto committed -
Given top !top/foo in an ignore file, we should not unignore top/foo. This is an implementation detail of the git code leaking, but that's the behaviour we should show. A negation rule can only negate an exact rule it has seen before.
Carlos Martín Nieto committed -
This is not our code and it adds unecessary changes from the upstream code.
Carlos Martín Nieto committed -
Spelling fixes
nulltoken committed -
init: return the number of initializations
Carlos Martín Nieto committed -
Will Stamper committed
-
Edward Thomson committed
-
- 03 Dec, 2014 4 commits
-
-
Add missing else directive
Carlos Martín Nieto committed -
Add missing else directive to fix compiler warning: control reaches end of non-void function
Stefan Widgren committed -
win32: clear connection data on close
Carlos Martín Nieto committed -
Edward Thomson committed
-
- 01 Dec, 2014 1 commit
-
-
fix cl_git_mkfile() to test for -1 rather than 0 for errors from p_creat...
Edward Thomson committed
-
- 30 Nov, 2014 1 commit
-
-
describe: check error codes
Carlos Martín Nieto committed
-
- 29 Nov, 2014 1 commit
-
-
Edward Thomson committed
-
- 26 Nov, 2014 1 commit
-
-
Jeff Hostetler committed
-
- 23 Nov, 2014 6 commits
-
-
Regain non-threadsafe builds and make the valgrind build failable
Edward Thomson committed -
peel: reject bad queries with EPEEL
Edward Thomson committed -
We no longer have NULL strings, but empty ones and duplicate the sides if necessar, so the first check will never do anything. While in the area, remove unnecessary ifs and early returns.
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
Carlos Martín Nieto committed
-
Valgrind is now clean except for libssl and libgcrypt.
Carlos Martín Nieto committed
-
- 22 Nov, 2014 4 commits
-
-
There are some combination of objects and target types which we know cannot be fulfilled. Return EINVALIDSPEC for those to signify that there is a mismatch in the user-provided data and what the object model is capable of satisfying. If we start at a tag and in the course of peeling find out that we cannot reach a particular type, we return EPEEL.
Carlos Martín Nieto committed -
When flipping the default to threadsafe, we never made sure that the tests were building non-threadsafe variants. Specify which thead-safety we want for each.
Carlos Martín Nieto committed -
We don't need to know the result of the travis run before determining whether we want to consider the merge as successful.
Carlos Martín Nieto committed -
Fix for misleading "missing delta bases" error.
Carlos Martín Nieto committed
-
- 21 Nov, 2014 7 commits
-
-
Ravindra Patel committed
-
Do not assume blob contents are NULL terminated
Edward Thomson committed -
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
That's a bad assumption to make, even though right now it holds (because of the way we've implemented decompression of packfiles), this may change in the future, given that ODB objects can be binary data. Furthermore, the ODB object can return a NULL pointer if the object is empty. Copying the NULL pointer to the strbuf lets us handle it like an empty string. Again, the NULL pointer is valid behavior because you're supposed to check the *size* of the object before working on it.
Vicent Marti committed
-