File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
php-git2 is a PHP bindings to the libgit2 linkable C Git library.
4
4
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
+
5
8
## Status
6
9
7
10
0.3.0 Alpha (switching to functions)
@@ -55,8 +58,6 @@ resource|bool function git_repository_init(string $path, long $is_bare);
55
58
public struct (e.g: git_config_entry) should consider return as an array.
56
59
````
57
60
58
- see libgit2.github.com/libgit2/#v0.20.0
59
-
60
61
##### file name rules.
61
62
62
63
basically, 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)
1063
1063
backend -> parent .write = & php_git2_odb_backend_write ;
1064
1064
backend -> parent .read_prefix = & php_git2_odb_backend_read_prefix ;
1065
1065
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;
1067
1067
backend -> parent .exists = & php_git2_odb_backend_exists ;
1068
1068
backend -> parent .foreach = & php_git2_odb_backend_foreach ;
1069
1069
backend -> parent .free = & php_git2_odb_backend_free ;
You can’t perform that action at this time.
0 commit comments