Skip to content

Commit 6a5f090

Browse files
committed
[odb_backend] don't support stream at this time
1 parent e4fc251 commit 6a5f090

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
php-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

710
0.3.0 Alpha (switching to functions)
@@ -55,8 +58,6 @@ resource|bool function git_repository_init(string $path, long $is_bare);
5558
public 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

6263
basically, we rely libgit2 grouping at this time. (`branch` group functions should be in branch.c)

odb.c

+1-1
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)