mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-07 07:13:12 +00:00
The `dirname` and `dirbase` methods have been replaced with the Android implementation, which is actually compilant to some kind of standard. A new method `topdir` has been added, which returns the topmost directory in a path. These changes fix issue #49: `gitfo_prettify_dir_path` converts "./.git/" to ".git/", so the code at src/repository.c:190 goes out of bounds when trying to find the topmost directory. The new `git__topdir` method handles this gracefully, and the fixed `git__dirname` now returns the proper value for the repository's working dir. E.g. /repo/.git/ ==> working dir '/repo/' .git/ ==> working dir '.' Signed-off-by: Vicent Marti <tanoku@gmail.com> |
||
|---|---|---|
| .. | ||
| resources | ||
| .gitignore | ||
| NAMING | ||
| t00-core.c | ||
| t01-data.h | ||
| t01-rawobj.c | ||
| t02-data.h | ||
| t02-objread.c | ||
| t02-oids.h | ||
| t03-objwrite.c | ||
| t04-commit.c | ||
| t05-revwalk.c | ||
| t06-index.c | ||
| t07-hashtable.c | ||
| t08-tag.c | ||
| t09-tree.c | ||
| t10-refs.c | ||
| test_helpers.c | ||
| test_helpers.h | ||
| test_lib.c | ||
| test_lib.h | ||
| test_main.c | ||
| tests.supp | ||