- 02 Apr, 2014 6 commits
-
-
Jiri Pospisil committed
-
Correct a stale reference to GIT_EBAREINDEX
Vicent Marti committed -
Per @carlosmn, git_index_add is now named git_index_add_bypath.
Rob Rix committed -
Skip untracked contained repo contents even with gitlink files
Vicent Marti committed -
Russell Belfer committed
-
When doing a diff for use in status, we should never show the content of a git repository contained inside another one. The logic to do this was looking for a .git directory and so when a gitlink plain .git file was used, it was failing to exclude the directory content.
Russell Belfer committed
-
- 01 Apr, 2014 11 commits
-
-
Rob Rix committed
-
Carlos Martín Nieto committed
-
In-memory packing backend
Russell Belfer committed -
Fix submodule sort order during iteration
Edward Thomson committed -
Add CFLAGS -Wdeclaration-after-statement
Vicent Marti committed -
This warns local variables declarations after statement, which helps not to break MSVC
Linquize committed -
Use git_object_short_id in examples
Vicent Marti committed -
Rename in-memory remote to anonymous and swap url and fetch order
Vicent Marti committed -
The order in this function is the opposite to what create_with_fetchspec() has, so change this one, as url-then-refspec is what git does. As we need to break compilation and the swap doesn't do that, let's take this opportunity to rename in-memory remotes to anonymous as that's really what sets them apart.
Carlos Martín Nieto committed -
Jiri Pospisil committed
-
Fix git_odb_short_id and git_odb_exists_prefix bugs
Edward Thomson committed
-
- 31 Mar, 2014 9 commits
-
-
Russell Belfer committed
-
Russell Belfer committed
-
With the changes to how git_path_dirload_with_stat handles things that look like submodules, submodules could end up sorted in the wrong order with the workdir iterator. This moves the submodule check earlier in the iterator processing of a new directory so that the submodule name updates will happen immediately and the sort order will be correct.
Russell Belfer committed -
Russell Belfer committed
-
Const up members of git_merge_file_result
Vicent Marti committed -
Edward Thomson committed
-
Introduce git_merge_head_id
Vicent Marti committed -
Edward Thomson committed
-
Don't reset need_pack
Carlos Martín Nieto committed
-
- 30 Mar, 2014 2 commits
-
-
While looping over multiple heads, an up-to-date head will clobber the `remote->need_pack` setting, preventing the rest of the machinery from building and downloading a pack-file, breaking fetches.
Etienne Samson committed -
Update clar to 4b75388
Edward Thomson committed
-
- 29 Mar, 2014 1 commit
-
-
Edward Thomson committed
-
- 28 Mar, 2014 3 commits
-
-
RFC: Sandbox HOME during test execution
Vicent Marti committed -
Edward Thomson committed
-
Edward Thomson committed
-
- 27 Mar, 2014 5 commits
-
-
Fix use-after-free in submodule reload code and other memory leaks
Vicent Marti committed -
Russell Belfer committed
-
Russell Belfer committed
-
If the first call to release a no-longer-existent submodule freed the object, the check if a second is needed would dereference the data that was just freed.
Russell Belfer committed -
Fix segfault if gitmodules is invalid
Vicent Marti committed
-
- 26 Mar, 2014 3 commits
-
-
When a submodule was inserted with a different path and name, the return value from khash greater than zero was allowed to propagate back out to the caller when it should really be zeroed. This led to a possible crash when reloading submodules if that was the first time that submodule data was loaded.
Russell Belfer committed -
The reload_all call could end up dereferencing a NULL pointer if there was an error while attempting to load the submodules config data (i.e. invalid content in the gitmodules file). This fixes it.
Russell Belfer committed -
Cleanup some warnings and mem leaks
Vicent Marti committed
-