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 214dfb3cd1c7e5a3b5a0353a4c9f9b63cb6545f2

Do not test doit != 1 because it can be a bigger number (thanks w3af!)
Author: Catalin(ux) M. BOIE
Author date (UTC): 2017-03-02 17:51
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2017-03-02 17:52
Parent(s): 1c8ffca4d65be53acdfe21d4c3c0888707f5d10b
Signing key:
Tree: 3e50093a79d52d82e2efc8c3ce73f9387eac0d63
File Lines added Lines deleted
inc/user.inc.php 1 1
inc/user/repo/bug/show/add_note.php 1 1
File inc/user.inc.php changed (mode: 100644) (index 2bf438c..5442142)
... ... function rg_user_edit_high_level($db, &$rg)
1622 1622 $errmsg = array(); $errmsg = array();
1623 1623 $load_form = TRUE; $load_form = TRUE;
1624 1624 while (1) { while (1) {
1625 if ($rg['doit'] != 1)
1625 if ($rg['doit'] == 0)
1626 1626 break; break;
1627 1627
1628 1628 $ui = array(); $ui = array();
File inc/user/repo/bug/show/add_note.php changed (mode: 100644) (index cbf8aa6..4134fde)
... ... $note = "";
7 7
8 8 $note_errmsg = array(); $note_errmsg = array();
9 9 while (1) { while (1) {
10 if ($note_add_doit != 1)
10 if ($note_add_doit == 0)
11 11 break; break;
12 12
13 13 $note = rg_var_str("note"); $note = rg_var_str("note");
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