aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Storage/GitRepo.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-05-29 10:18:26 -0400
committerAndrew Manning <tamanning@zoho.com>2016-05-29 10:18:26 -0400
commit63a97ff6fc313372d9cb439a621f12fdecc2fac1 (patch)
treeb77b9e3133def566a34530727a64d3915b2d2aec /Zotlabs/Storage/GitRepo.php
parentab54bf514921ae3fe0fafcdf154364815ed6375f (diff)
downloadvolse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.tar.gz
volse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.tar.bz2
volse-hubzilla-63a97ff6fc313372d9cb439a621f12fdecc2fac1.zip
Git commit made for the page edits when the page is saved.
Diffstat (limited to 'Zotlabs/Storage/GitRepo.php')
-rw-r--r--Zotlabs/Storage/GitRepo.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/Zotlabs/Storage/GitRepo.php b/Zotlabs/Storage/GitRepo.php
index f4a129bb3..306abc0ba 100644
--- a/Zotlabs/Storage/GitRepo.php
+++ b/Zotlabs/Storage/GitRepo.php
@@ -127,6 +127,15 @@ class GitRepo {
$repo['logs'] = $git->log(array('limit' => 50));
return $repo;
}
+
+ // Commit changes to the repo. Default is to stage all changes and commit everything.
+ public function commit($msg, $options = array()) {
+ try {
+ return $this->git->commit($msg, $options);
+ } catch (\PHPGit\Exception\GitException $ex) {
+ return false;
+ }
+ }
public static function isValidGitRepoURL($url) {
if (validate_url($url) && strrpos(parse_url($url, PHP_URL_PATH), '.')) {