Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 271 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 271 Bytes

UPPM Git Client

php uppm install gitclient
$git = new Git();

$git->changeDirectory(".");
$git->initIfNot();
$git->setRemote("origin");
$git->add(".");
$git->commit("Hello, this push has been sent by GitPHPClient by UPPM");
$git->push("master");