List of commits:
Subject Hash Author Date (UTC)
Minor git fixes a21b35cd0f87b844fe5ce4b8b2e14fab2506296e Catalin(ux) M. BOIE 2020-07-31 05:36:43
Docker updates d3e9cd4e358cac2d4018dcf7dc681288445a679f Catalin(ux) M. BOIE 2020-07-31 05:36:08
Admin report improvements b527baab12e2e08998672559b0f33fc6df15e74c Catalin(ux) M. BOIE 2020-07-31 05:35:25
Cosmetic 30c879d625b094a33bd9a2165c67a8a11e802f42 Catalin(ux) M. BOIE 2020-07-31 05:34:19
Builder, worker and web updates for artifacts c82a7143a24ec987e0d98bb58327ef15bc602d0d Catalin(ux) M. BOIE 2020-07-31 05:30:44
Prevent bots to create accounts 3eacd8103e9a039f3f8585a59c27fdff6fd66ca4 Catalin(ux) M. BOIE 2020-07-08 05:25:37
css: Force the footer to the bottom using flex f89dddc9fa6b2c131448996cc51349e00224eea6 Catalin(ux) M. BOIE 2020-07-04 04:15:03
docs: css tweaks d270a286b160bb5de39ade5d99a58fe26e03b2d5 Catalin(ux) M. BOIE 2020-06-30 17:21:02
Improved admin report 9fa82cc2878886c2195cdd3f334dd532b3ea6a22 Catalin(ux) M. BOIE 2020-06-28 10:19:24
First version of artifacts ad6b6c75aab8d485ea45c1d851f23d83587d6931 Catalin(ux) M. BOIE 2020-06-27 13:11:17
Allow adding bugs for public repos + small fixes e67955ce3360c8c003a718e01844b3d8effa74a6 Catalin(ux) M. BOIE 2020-06-25 16:05:54
History updates 4c4aef444bbd1149f2c02b6da620f184aae1eed6 Catalin(ux) M. BOIE 2020-06-16 05:53:14
Allow cron to execute sub-tasks in parallel - we missed stats f65c76714cf349a53f584c8e65d9e89c24a4fa69 Catalin(ux) M. BOIE 2020-06-12 06:50:40
bug: search: fixed the override of some global variables 82e251ea883e50b8d1476530e0268fd5770fbf41 Catalin(ux) M. BOIE 2020-06-10 21:29:03
If a repo is non-existent, we should not try to use the id bcb08f74e21556aa750920335ebec2f965e72f36 Catalin(ux) M. BOIE 2020-06-10 08:05:43
If no activity, average elap is not computed correctly a7d4f0042c912d29f7943e0446820a477f42d6f7 Catalin(ux) M. BOIE 2020-06-09 07:03:21
When a user is requesting an e-mail confirmation operation, ignore if the e-mail was confirmed 62c387ed431d0c46d16e534cc1c954557ee389f7 Catalin(ux) M. BOIE 2020-06-08 06:42:22
Reverse test messed the creation of partition tables; more debugging d820816c2624549e0b0e1634523717cda0b7ba66 Catalin(ux) M. BOIE 2020-06-05 17:33:08
We need to prepare the partition tables before some inserts 07a12d1c79104b4707a9d43463fa9c11a4697293 Catalin(ux) M. BOIE 2020-06-05 15:55:43
.spec updates 5fe0aca1b4a3bfd8c1c8db95409faf512ad09b43 Catalin(ux) M. BOIE 2020-06-04 22:03:57
Commit a21b35cd0f87b844fe5ce4b8b2e14fab2506296e - Minor git fixes
Author: Catalin(ux) M. BOIE
Author date (UTC): 2020-07-31 05:36
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2020-07-31 05:36
Parent(s): d3e9cd4e358cac2d4018dcf7dc681288445a679f
Signer:
Signing key:
Signing status: N
Tree: 7f64937c4c4304bcbc3c93ed95b885f0ad9ea4de
File Lines added Lines deleted
inc/git.inc.php 9 0
File inc/git.inc.php changed (mode: 100644) (index 73b531d..df69983)
... ... function rg_git_refs($repo_path)
2223 2223 */ */
2224 2224 function rg_git_ref_valid($refs, $type, $ref) function rg_git_ref_valid($refs, $type, $ref)
2225 2225 { {
2226 rg_log('git_ref_valid: type=' . $type . ' ref=' . $ref);
2227
2228 if (strcmp($type, 'commit') == 0)
2229 return TRUE;
2230
2226 2231 if (!isset($refs[$type])) if (!isset($refs[$type]))
2227 2232 return FALSE; return FALSE;
2228 2233
 
... ... function rg_git_parse_ref(&$paras)
2314 2319 } else if (strcmp($paras[0], "branch") == 0) { } else if (strcmp($paras[0], "branch") == 0) {
2315 2320 $ret['ref_type'] = "branch"; $ret['ref_type'] = "branch";
2316 2321 $ret['ref_path'] = "refs/heads/"; $ret['ref_path'] = "refs/heads/";
2322 } else if (strcmp($paras[0], 'commit') == 0) {
2323 $ret['ref_type'] = 'commit';
2324 $ret['ref_path'] = $paras[1];
2325 return $ret;
2317 2326 } else { } else {
2318 2327 return $ret; return $ret;
2319 2328 } }
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://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main