- 05 Mar, 2013 2 commits
-
-
clear REUC on checkout
Vicent Martí committed -
Edward Thomson committed
-
- 03 Mar, 2013 5 commits
-
-
`git_diff_get_patch()` would unconditionally load the patch object and then simply leak it if the user hadn't requested it. Short-circuit loading the object if the user doesn't want it. The rest of the plugs are simply calling the free functions of objects allocated during the tests.
Carlos Martín Nieto committed -
indexer: use a hashtable for keeping track of offsets
Vicent Martí committed -
These offsets are needed for REF_DELTA objects, which encode which object they use as a base, but not where it lies in the packfile, so we need a list. These objects are mostly from older packfiles, before OFS_DELTA was widely spread. The time spent in indexing these packfiles is greatly reduced, though remains above what git is able to do.
Carlos Martín Nieto committed -
indexer: kill git_indexer
Vicent Martí committed -
This was the first implementation and its goal was simply to have something that worked. It is slow and now it's just taking up space. Remove it and switch the one known usage to use the streaming indexer.
Carlos Martín Nieto committed
-
- 02 Mar, 2013 4 commits
-
-
Update contributing and conventions
Vicent Martí committed -
Russell Belfer committed
-
When the examples/diff.c was written, there was not yet a revparse API. Now we can use it to make command line parsing way better with less code. Yay!
Russell Belfer committed -
The discussion about converting some of our foreach-style APIs to use iterator objects got me wanting to make a list of good starter projects. I put it in CONTRIBUTING.md and then went crazy with updates to that file and to CONVENTIONS.md.
Russell Belfer committed
-
- 01 Mar, 2013 6 commits
-
-
Allow empty config object and use it for tests
Vicent Martí committed -
This removes assertions that prevent us from having an empty git_config object and then updates some tests that were dependent on global config state to use an empty config before running anything.
Russell Belfer committed -
Control for core.autocrlf during testing
Philip Kelley committed -
Russell Belfer committed
-
Clone should not clean up directories it did not create
Vicent Martí committed -
Jameson Miller committed
-
- 28 Feb, 2013 4 commits
-
-
Why cdecl why?
Vicent Martí committed -
This fixes some snprintf and vsnprintf related deprecation warnings we've been having on Windows with recent compilers.
Russell Belfer committed -
This removes the one-off GIT_CDECL and adds a new standard way of doing this named GIT_STDLIB_CALL with a src/win32 specific def when on the Windows platform.
Russell Belfer committed -
Allows compilation in newer versions of MinGW that already defined it.
Vicent Marti committed
-
- 27 Feb, 2013 7 commits
-
-
Russell Belfer committed
-
Russell Belfer committed
-
Add file similarity scoring to diff rename/copy detection
Vicent Martí committed -
don't dereference at the end of the workdir iterator
Russell Belfer committed -
Edward Thomson committed
-
Win32: Use constants in version resource definitions where possible
Vicent Martí committed -
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed
-
- 26 Feb, 2013 5 commits
-
-
Increment reference counter in git_repository_set_config
Vicent Martí committed -
This fixes #1365
Sascha Cunz committed -
Give props to Martin Pool
Edward Thomson committed -
Martin Pool was the original author of the code referenced in the clone example. Make note that he's given his permission and also give him the proper credit.
Martin Woodward committed -
This reverts commit efe7fad6, except for the indentation fixes.
Michael Schubert committed
-
- 25 Feb, 2013 7 commits
-
-
hash: remove git_hash_init from internal api
Vicent Martí committed -
Along with that, fix indentation in tests-clar/object/raw/hash.c
Michael Schubert committed -
Initialize the hash ctx with git_hash_ctx_init, not git_hash_init.
Michael Schubert committed -
packbuilder: minor improvements
Vicent Martí committed -
Michael Schubert committed
-
Michael Schubert committed
-
Remove sample hook files
Vicent Martí committed
-