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 2ec237fdf7ccf7f04acd055f62ce2c8d4b0f29ed

Fix viewing individual commits
`git log ref..ref` won't print anything.
Author: xaizek
Author date (UTC): 2020-07-31 16:39
Committer name: xaizek
Committer date (UTC): 2020-07-31 16:39
Parent(s): c2bf639e3f0dd318b07db6810656e268a0bcb094
Signing key: 99DC5E4DB05F6BE2
Tree: 54be8a9ba29e1bc4a3aa8bdc9040f937497bbc9b
File Lines added Lines deleted
inc/git.inc.php 2 0
File inc/git.inc.php changed (mode: 100644) (index bb19231..35b6d7e)
... ... function rg_git_from_to($from, $to)
239 239 } else if (empty($to)) { } else if (empty($to)) {
240 240 rg_log('to empty'); rg_log('to empty');
241 241 $from_to = $from; $from_to = $from;
242 } else if ($from === $to) {
243 $from_to = $from;
242 244 } else { } else {
243 245 $from_to = $from . '..' . $to; $from_to = $from . '..' . $to;
244 246 } }
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