List of commits:
Subject Hash Author Date (UTC)
We need to copy also the tags in the namespace to not get errors when pushing tags a6fa7c067b29f2d3ae400e6cb9117d17225ce047 Catalin(ux) M. BOIE 2016-03-06 21:21:07
Clean some items on TODO regarding mr 2383950909474e510897f37e46c2cf7cc762ec89 Catalin(ux) M. BOIE 2016-03-06 21:20:37
Lots of fixes for pull requests 54c410d144ae9ebdcc17ad8d11865a378e89f576 Catalin(ux) M. BOIE 2016-03-06 20:07:06
Replaced rg_bug_next_id with the more generic rg_repo_next_id 7c3131ac2bff3afb08983a2ebd23736ced070fb1 Catalin(ux) M. BOIE 2016-02-17 16:07:12
text correction: Amazon user must also have S3 rights 6a97f6ef92bb455b02434f35218224a3cae4cf02 Catalin(ux) M. BOIE 2016-02-14 12:11:29
for git:// access, organization field was missing 6c4479d982ea36941dc10db6d1b74012d1a75649 Catalin(ux) M. BOIE 2016-02-14 12:10:16
TODO changes bc6bf53c22bf2918e0fca8684406a753e4a335a3 Catalin(ux) M. BOIE 2016-02-14 12:09:47
Added login hints: about rg_change_pass ed1c5226b5e9e44859f76ad058aed76423855e0c Catalin(ux) M. BOIE 2016-02-14 12:09:23
css: fixed admins pages 3a8e93564ee53176ae510e131e55fa4bbef98908 Catalin(ux) M. BOIE 2016-02-14 12:09:00
Added rg_change_pass tool cfc9e214ef3bb978e831a68ab6395c74b6604b41 Catalin(ux) M. BOIE 2016-02-14 11:56:10
CSS fixes to make the spaces the same all over the place 6abddc6fc655a8b67537f46106467229ed687dcc Catalin(ux) M. BOIE 2016-02-14 11:19:07
minor: reorder functions 4c02703e69e56289670e96952b49c55fadcab671 Catalin(ux) M. BOIE 2016-02-14 09:40:44
Show ssh key type before number of bits 980da7f8b9c3380c169547c2b1f522e7d52f0398 Catalin(ux) M. BOIE 2016-02-12 05:20:21
Improved a little the error message received by git:// bb2ed8554a00ae532e93bab17285a4a1eb24ec12 Catalin(ux) M. BOIE 2016-02-11 21:13:14
Show the key size in bits when listing ssh keys 31583c21cf178475e546ad47a47e56c6982dff09 Catalin(ux) M. BOIE 2016-02-08 06:23:43
Improved a little the admin report 1f348f2c163ba1320dce223774b2f677f18d6461 Catalin(ux) M. BOIE 2016-02-08 06:23:05
Improved a little how a tree is shown 753af0ef4a6d9fc2f2ddb993335f3c50a3fff2ab Catalin(ux) M. BOIE 2016-02-07 06:46:02
In admin's report, add in the subject the total number of yesterday's changes 02a3b4131626b7023ba87a59b188256a601cd13a Catalin(ux) M. BOIE 2016-02-07 05:52:47
More detailed and correct description for hooks d3045a11eed05c897381ae2cfcbbf91ede1d4910 Catalin(ux) M. BOIE 2016-02-07 05:42:53
docker: fixes and improvements for image generation 37bd416d1664e8d9fcdf4554646618e5dd226e35 Catalin(ux) M. BOIE 2016-02-07 05:42:28
Commit a6fa7c067b29f2d3ae400e6cb9117d17225ce047 - We need to copy also the tags in the namespace to not get errors when pushing tags
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-03-06 21:21
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-03-06 21:21
Parent(s): 2383950909474e510897f37e46c2cf7cc762ec89
Signing key:
Tree: 5468aea6506fe101a679030178bca72972f4e9e7
File Lines added Lines deleted
scripts/remote.php 6 3
File scripts/remote.php changed (mode: 100644) (index 48dd957..7b25512)
... ... if ($push == 1) {
287 287 // Prepare refs to avoid the following message: // Prepare refs to avoid the following message:
288 288 // "No refs in common and none specified; doing nothing. // "No refs in common and none specified; doing nothing.
289 289 // Perhaps you should specify a branch such as 'master'." // Perhaps you should specify a branch such as 'master'."
290 $dst = $repo_path . "/refs/namespaces/" . $namespace . "/refs/heads";
291 $r = rg_copy_tree($repo_path . "/refs/heads", $dst . "/", 0755);
290 $dst = $repo_path . '/refs/namespaces/' . $namespace . '/refs';
291 $r = rg_copy_tree($repo_path . '/refs/heads', $dst . '/heads/', 0755);
292 292 if ($r !== TRUE) if ($r !== TRUE)
293 fatal("Internal error (cannot copy refs)");
293 fatal("Internal error (cannot copy heads)");
294 $r = rg_copy_tree($repo_path . '/refs/tags', $dst . '/tags/', 0755);
295 if ($r !== TRUE)
296 fatal("Internal error (cannot copy tags)");
294 297 } }
295 298
296 299 $run = "git-shell -c \"" . $cmd . " " . escapeshellarg($repo_path) . "\""; $run = "git-shell -c \"" . $cmd . " " . escapeshellarg($repo_path) . "\"";
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