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 b0b945bb27ce33e5065de0e59aca757b92852c60

Typo
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-09-21 16:54
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-09-21 16:54
Parent(s): 06d39d3519b2d026a4fe425586a64822cf430d4b
Signing key:
Tree: daf65b549614cf35b348d2de16ce0a8178f5a027
File Lines added Lines deleted
scripts/remote.php 2 2
File scripts/remote.php changed (mode: 100644) (index 3b8d13c..7267125)
... ... if (isset($_SERVER['SSH_CONNECTION'])) {
165 165 $ip = rg_fix_ip(getenv("REMOTE_HOST")); $ip = rg_fix_ip(getenv("REMOTE_HOST"));
166 166 } }
167 167
168 if (strncasecmp($cmd_repo, "git-upload-pack", 15) == 0) {
168 if (strncasecmp($cmd_repo, 'git-upload-pack', 15) == 0) {
169 169 $cmd = 'git-upload-pack'; $cmd = 'git-upload-pack';
170 } else if (strncasecmp($cmd_repo ', "git-receive-pack', 16) == 0) {
170 } else if (strncasecmp($cmd_repo, 'git-receive-pack', 16) == 0) {
171 171 $cmd = 'git-receive-pack'; $cmd = 'git-receive-pack';
172 172 } else { } else {
173 173 $cmd = $cmd_repo; $cmd = $cmd_repo;
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