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 9923af486a2599c5acc4f35721df04b41e459e6f

Don't reset bug owner on editing bug
Ownership doesn't transfer like that.
Author: xaizek
Author date (UTC): 2019-07-07 20:44
Committer name: xaizek
Committer date (UTC): 2019-07-08 13:02
Parent(s): e0d2cc6b3f867873fd072f7b137f20d15e0df596
Signing key: 99DC5E4DB05F6BE2
Tree: f2218da8a884e05b29a870912aad52505cce51d3
File Lines added Lines deleted
inc/bug.inc.php 1 1
File inc/bug.inc.php changed (mode: 100644) (index 5225cc1..30482ec)
... ... function rg_bug_edit($db, $login_ui, $ri, $data)
409 409 $data['utime'] = $now; $data['utime'] = $now;
410 410 $data['ip'] = $ip; $data['ip'] = $ip;
411 411 $data['repo_id'] = $ri['repo_id']; $data['repo_id'] = $ri['repo_id'];
412 $data['uid'] = $login_ui['uid'];
413 412 if ($add == 1) { if ($add == 1) {
413 $data['uid'] = $login_ui['uid'];
414 414 $data['deleted'] = 0; $data['deleted'] = 0;
415 415 $sql = "INSERT INTO bugs (bug_id, itime, utime, repo_id" $sql = "INSERT INTO bugs (bug_id, itime, utime, repo_id"
416 416 . ", uid, ip, title, body, state, assigned_uid" . ", uid, ip, title, body, state, assigned_uid"
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