- 01 May, 2013 19 commits
-
-
Russell Belfer committed
-
There are many paths through revparse that may return an error code without reporting an error, I believe. This fixes one of them. Because of the backtracking in revparse, it is pretty complicated to fix the others.
Russell Belfer committed -
Russell Belfer committed
-
A number of places were looking up option config values and then not clearing the error codes if the values were not found. This moves the repeated pattern into a shared routine and adds the extra call to giterr_clear() when needed.
Russell Belfer committed -
Russell Belfer committed
-
Russell Belfer committed
-
There are some cases, particularly where no loaded ODB backends support a particular operation, where we would return an error code without having set an error. This catches those cases and reports that no ODB backends support the operation in question.
Russell Belfer committed -
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
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 -
Namespace support
Vicent Martí committed
-
- 30 Apr, 2013 18 commits
-
-
Vicent Marti committed
-
Update diff handling of "untracked" directories
Vicent Martí committed -
Russell Belfer committed
-
Russell Belfer committed
-
This includes more tests for various scenarios when diff includes an untracked directory in the workdir with contents either ignored or not.
Russell Belfer committed -
When diff encounters an untracked directory, there was a shortcut that it took which is not compatible with core git. This makes the default behavior no longer take that shortcut and instead look inside the untracked directory to see if there are any untracked files within it. If there are not, then the directory is treated as an ignore directory instead of an untracked directory. This has implications for the git_status APIs.
Russell Belfer committed -
In preparation for more changes to the internal diff logic, it seemed wise to split the very large git_diff__from_iterators into separate functions that handle the four main cases (unmatched old item, unmatched new item, unmatched new directory, and matched old and new items). Hopefully this will keep the logic easier to follow even as more cases have to be added to this code.
Russell Belfer committed -
Vicent Marti committed
-
Vicent Marti committed
-
Remove most inlines from the public API
Vicent Martí committed -
Add refspec list accessors
Vicent Martí committed -
Catch issue in config set with no config file
Vicent Martí committed -
This prevents a segfault when setting a value in the config of a repository that doesn't have a config file.
Russell Belfer committed -
Carlos Martín Nieto committed
-
Bring back a way of acessing the git_refspec* from a remote. Closes #1514
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
Removed useless prototype and renamed object typecast functions declaration macro.
Russell Belfer committed -
Russell Belfer committed
-
- 29 Apr, 2013 3 commits
-
-
This removes the GIT_INLINE versions of the simple git_object accessors and standardizes them with a helper macro in src/object.h to build the function bodies.
Russell Belfer committed -
Russell Belfer committed
-
dwim shorthand refspecs for fetch
Vicent Martí committed
-