- 19 Sep, 2011 13 commits
-
-
Fix compilation issues with mingw64 headers
Vicent Martí committed -
Use git_treebuilder to write the index as a tree
Vicent Martí committed -
git_repository_config: open global config file automatically
Vicent Martí committed -
Fixup status.c
Vicent Martí committed -
filebuf.c: fix unused-but-set warning
Vicent Martí committed -
Fix a bug and GCC warning introduced in 932669b8
Vicent Martí committed -
Fix up examples code
Vicent Martí committed -
Add checks for NULL to the config and remote free functions
Vicent Martí committed -
Vicent Marti committed
-
Fix git_status_foreach tests
Vicent Martí committed -
Don't use '__attribute__ visibility' with gcc unless it's at version 4 or better
Vicent Martí committed -
version 4 or better.
David Boyce committed -
There were quite a few places were spaces were being used instead of tabs. Try to catch them all. This should hopefully not break anything. Except for `git blame`. Oh well.
Vicent Marti committed
-
- 18 Sep, 2011 1 commit
-
-
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.
Vicent Marti committed
-
- 17 Sep, 2011 4 commits
-
-
dirent_cb() didn't check the return value of determine_status(). Signed-off-by: schu <schu-github@schulog.org>
schu committed -
nulltoken committed
-
Provided the tests fail (which they should not) and the callback is invoked too many times, this prevents the tests from segfaulting.
nulltoken committed -
Signed-off-by: schu <schu-github@schulog.org>
schu committed
-
- 16 Sep, 2011 8 commits
-
-
Vicent Marti committed
-
Vicent Marti committed
-
This allows to build both test suites at the same time
Vicent Marti committed -
Vicent Marti committed
-
Vicent Marti committed
-
...Ops, I broke the old test when porting it to Clay.
Vicent Marti committed -
Reverted signature of git_signature_new. Removed error check wrappers (voted down). Made Makefile work out of the box on Linux and Solaris when standard cmake build instructions for the library are followed.
David Boyce committed -
Vicent Marti committed
-
- 14 Sep, 2011 5 commits
-
-
- Should increase performance through usage of a walker - No callback invocation for unaltered entries
nulltoken committed -
- fix retrieval of a file status when working against a newly initialized repository - reduce memory pressure - prevents a directory from being tested
nulltoken committed -
nulltoken committed
-
nulltoken committed
-
Vicent Marti committed
-
- 13 Sep, 2011 5 commits
-
-
Document GIT_SUCCESS
Vicent Martí committed -
David Boyce committed
-
change to the signature of an API function (git_signature_new). Also, the examples/general.c had a lot of unchecked return values which were addresed with a couple of macros. The resulting example still does not work correctly but at least now it fails with an error message rather than not compiling or dumping core. Example runtime issues may be addressed in a later commit.
David Boyce committed -
David Boyce committed
-
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Carlos Martín Nieto committed
-
- 12 Sep, 2011 3 commits
-
-
For unsigned types, the comparison >= 0 is always true, so avoid it by using a post-decrement and integrating the initial assigment into the loop body. No change in behavior is intended.
Sebastian Schuberth committed -
If the global configuration file is missing, it is ignored. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Carlos Martín Nieto committed -
Jerome Lambourg committed
-
- 10 Sep, 2011 1 commit
-
-
There is no point in reinventing the wheel when using the treebuilder is much more straightforward and makes the code more readable. There is no optimisation, and the performance is no worse than when writing the tree object ourselves.
Carlos Martín Nieto committed
-