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.
<root> / inc / xlog.inc.php (a5eb6e3b969b97df2e3744d88a23076996f9d3f8) (399B) (mode 100644) [raw]
<?php

$_xlog_file = "/tmp/gg.log";
$_xlog_fd = FALSE;

function xlog($str)
{
	global $_xlog_file;
	global $_xlog_fd;

	if ($_xlog_fd === FALSE) {
		$_xlog_fd = @fopen($_xlog_file, "a+");
		if ($_xlog_fd === FALSE)
			return;
	}

	$buf = date("Y-m-d H:i:s");
	if (!empty($_SERVER['REMOTE_ADDR']))
		$buf .= " " . $_SERVER['REMOTE_ADDR'];
	$buf .= " " . $str . "\n";

	fwrite($_xlog_fd, $buf);
}

?>
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