File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 22
33php-git2 is a PHP bindings to the libgit2 linkable C Git library.
44
5+ * API Documentation: http://libgit2.github.com/libgit2/#v0.20.0 (also see Signature conversions section)
6+ * IRC: #php-git on irc.freenode.net.
7+
58## Status
69
7100.3.0 Alpha (switching to functions)
@@ -55,8 +58,6 @@ resource|bool function git_repository_init(string $path, long $is_bare);
5558public struct (e.g: git_config_entry) should consider return as an array.
5659````
5760
58- see libgit2.github.com/libgit2/#v0.20.0
59-
6061##### file name rules.
6162
6263basically, we rely libgit2 grouping at this time. (` branch ` group functions should be in branch.c)
Original file line number Diff line number Diff line change @@ -1063,7 +1063,7 @@ PHP_FUNCTION(git_odb_backend_new)
10631063 backend -> parent .write = & php_git2_odb_backend_write ;
10641064 backend -> parent .read_prefix = & php_git2_odb_backend_read_prefix ;
10651065 backend -> parent .read_header = & php_git2_odb_backend_read_header ;
1066- backend -> parent .writestream = & php_git2_odb_backend_writestream ;
1066+ // backend->parent.writestream = &php_git2_odb_backend_writestream;
10671067 backend -> parent .exists = & php_git2_odb_backend_exists ;
10681068 backend -> parent .foreach = & php_git2_odb_backend_foreach ;
10691069 backend -> parent .free = & php_git2_odb_backend_free ;
You can’t perform that action at this time.
0 commit comments