I would like to add and commit to local git repository using PHP code
I new babies in github ,so I don't understand in path on github path git.exe at C:\Users\Administrator\AppData\Local\GitHub\PortableGit_054f2e797ebafd44a30203088cd3d58663c627ef\libexec\git-core
path of repo C:\Users\Administrator\Documents\GitHub\confre
$path = "C:\Users\Administrator\Documents\GitHub\confre";
chdir($path);
echo shell_exec("git add . ");
echo shell_exec("git commit -m 'commit form php' ");
it don't work. Help me pls
thanks
I use http://github.com/kbjr/Git.php it work!
require_once('Git.php');
$repo = Git::open('gitphp'); // -or- Git::create('/path/to/repo')
$repo->run(' config user.email "your email"');
$repo->run(' config user.name "your username"');
echo $repo->run(' log -p');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With