File tree 1 file changed +54
-3
lines changed
1 file changed +54
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,28 @@ please check tests cases.
10
10
11
11
# Installing And Running
12
12
13
+ you need to install libgit2 before make php-git.
14
+
15
+ ````
16
+ git clone https://github.com/libgit2/libgit2.git
17
+ cd libgit2
18
+ mkdir build
19
+ cd build
20
+ cmake ..
21
+ cmake --build
22
+ sudo cmake --build . --target install
23
+ ````
24
+
13
25
````
14
26
git clone https://github.com/libgit2/php-git.git
15
27
cd php-git
16
28
phpize
17
29
./configure
18
30
make
19
- sudo make Install
31
+ make test
32
+ sudo make install
20
33
````
34
+ new php-git features almost tested.
21
35
22
36
# API
23
37
@@ -43,13 +57,23 @@ $repo = new Git2\Repository($path);
43
57
44
58
## Object Access
45
59
60
+ ### create new blob
61
+
62
+ ````
63
+ $oid = Git2\Blob::create($repo, "Hello World");
64
+ ````
65
+
46
66
## Tree Access
47
67
48
68
````
49
69
$repo = new Git2\Repository($path);
50
70
$tree = $repo->lookup(tree sha); // specify tree sha
51
-
52
71
foreach ($tree as $oid => $entry) {
72
+ /*
73
+ bool $entry->isTree();
74
+ bool $entry->isBlob();
75
+ bool $entry->isSubmodule();
76
+ */
53
77
var_dump($entry);
54
78
}
55
79
````
@@ -109,4 +133,31 @@ $walker->push("6e20138dc38f9f626107f1cd3ef0f9838c43defe");
109
133
foreach ($walker as $oid => $commit) {
110
134
printf("oid: %s\n", $oid);
111
135
printf("message: %s\n", $commit->getMessage());
112
- }
136
+ }
137
+
138
+ ## Config access
139
+
140
+ ````
141
+ $config = new Git2\Config("path/to/git/config");
142
+ $config->get("core.bare");
143
+ $config->store("core.bare","1");
144
+ ````
145
+
146
+ ## Reflog
147
+ will be add.
148
+
149
+ ## Remote access
150
+
151
+ will be add.
152
+
153
+ ## Author
154
+ * Shuhei Tanuma
155
+
156
+ ## Contributors
157
+
158
+ * Anthony Van de Gejuchte
159
+ * Cameron Eagans
160
+ * Graham Weldon
161
+ * James Titcumb
162
+ * Ryusuke SEKIYAMA
163
+ * Shuhei Tanuma
You can’t perform that action at this time.
0 commit comments