xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
Commit 3aaa0b5b7cc18277a8ca4b404c40b0eb15383681

Seems empty additional_headers will trigger a nasty error in php.
More exactly:
Multiple or malformed newlines found in additional_header.

So, we are putting a UTF-8 encoding in there.
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-07-02 04:53
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-07-02 04:54
Parent(s): bb450d8c2e47b30b98f6571ef80ae310387b4823
Signing key:
Tree: 85760ba8cf70b06c13e71ff3ff372cc5fe33b079
File Lines added Lines deleted
inc/log.inc.php 7 6
File inc/log.inc.php changed (mode: 100644) (index 387f329..1ce3f97)
... ... function rg_log_cron()
192 192 if ($last_ts + 4 * 3600 > time()) if ($last_ts + 4 * 3600 > time())
193 193 return 0; return 0;
194 194
195 mail($rg_admin_email, $wcount . " + " . $ncount
196 . " errors are waiting...",
197 "Please forward the content of /var/log/rocketgit*/err-*"
198 . " to RocketGit developers at rg-bugs@embedromix.ro.\n\n"
199 . "Thank you!\n\n",
200 "", "-f $rg_admin_email");
195 mail($rg_admin_email,
196 $wcount . ' + ' . $ncount . ' errors are waiting...',
197 'Please forward the content of /var/log/rocketgit*/err-*'
198 . ' to RocketGit developers at rg-bugs@embedromix.ro.\n\n'
199 . 'Thank you!\n\n',
200 'Content-Type: text/plain;charset=UTF-8',
201 "-f $rg_admin_email");
201 202
202 203 file_put_contents($rg_state_dir . "/log_cron_last", time()); file_put_contents($rg_state_dir . "/log_cron_last", time());
203 204 } }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master