Skip to content

Commit 19a9f4b

Browse files
committed
update README
1 parent 86e285d commit 19a9f4b

File tree

1 file changed

+54
-3
lines changed

1 file changed

+54
-3
lines changed

README.md

+54-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,28 @@ please check tests cases.
1010

1111
# Installing And Running
1212

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+
1325
````
1426
git clone https://github.com/libgit2/php-git.git
1527
cd php-git
1628
phpize
1729
./configure
1830
make
19-
sudo make Install
31+
make test
32+
sudo make install
2033
````
34+
new php-git features almost tested.
2135

2236
# API
2337

@@ -43,13 +57,23 @@ $repo = new Git2\Repository($path);
4357

4458
## Object Access
4559

60+
### create new blob
61+
62+
````
63+
$oid = Git2\Blob::create($repo, "Hello World");
64+
````
65+
4666
## Tree Access
4767

4868
````
4969
$repo = new Git2\Repository($path);
5070
$tree = $repo->lookup(tree sha); // specify tree sha
51-
5271
foreach ($tree as $oid => $entry) {
72+
/*
73+
bool $entry->isTree();
74+
bool $entry->isBlob();
75+
bool $entry->isSubmodule();
76+
*/
5377
var_dump($entry);
5478
}
5579
````
@@ -109,4 +133,31 @@ $walker->push("6e20138dc38f9f626107f1cd3ef0f9838c43defe");
109133
foreach ($walker as $oid => $commit) {
110134
printf("oid: %s\n", $oid);
111135
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

0 commit comments

Comments
 (0)