List of commits:
Subject Hash Author Date (UTC)
duilder updates (error out if head is not a tag 09ff5d7b52d059a7fab09427d8e6d12319a53804 Catalin(ux) M. BOIE 2015-07-14 20:27:35
Bump version to 0.39 c28468b1cf0488f8f98b04aeb6ba26429ee91807 Catalin(ux) M. BOIE 2015-07-14 04:34:34
duilder updates cc12a3a5a95586b4533346ccf7fd4cfa652e7d6f Catalin(ux) M. BOIE 2015-07-14 04:34:09
Use _blank instead of _new for page loading 2afd660c2f3ded308e9f1e76c844dcdb60f20dec Catalin(ux) M. BOIE 2015-07-14 04:30:51
TODO stuff d46f377f74021db2581d96e27a4d9b76e2b12348 Catalin(ux) M. BOIE 2015-07-14 04:30:29
Really corrected repo.php unit test. 219a7061df42a1593fc0f3959eddc9a3d54496ab Catalin(ux) M. BOIE 2015-07-14 04:25:56
Corrected 'rights' unit test. b3657cb073291681e8e3fd6ec9523bf550081d8e Catalin(ux) M. BOIE 2015-07-14 04:14:48
Remove more junk from testing folder. 0e769caa8f59615804312c488b74683288243196 Catalin(ux) M. BOIE 2015-07-14 04:14:27
Bump version to 0.38 b5e57d1da1a8a4a207234e1de4dcc4b6cdbe56ed Catalin(ux) M. BOIE 2015-07-13 20:19:32
Fix the islands 4f5d52ff6f87bb1dc48003337d42a6e3a2d98711 Catalin(ux) M. BOIE 2015-07-13 20:18:53
Open my webpage in another tab 54bc4e25313e41a2c0c46f186dc44e9223b9e69e Catalin(ux) M. BOIE 2015-07-13 20:18:04
Switch to Affero GPLv3! eb00fa19c6d3db33cf93b89b35ff08cc41a0d620 Catalin(ux) M. BOIE 2015-07-13 15:54:53
TODO stuff. 1715e3f2a5f61fb9afa77bd0a8ffa9096248e5db Catalin(ux) M. BOIE 2015-07-13 15:50:11
Added a message for when the ToS is denied. c46cad3154c6aaf0cac43d2a765e8b456440510d Catalin(ux) M. BOIE 2015-07-13 15:49:25
CSS changes, rework of <label> element. c307acb2b9340adbcfa2442c2abd88f72a72ab15 Catalin(ux) M. BOIE 2015-07-13 15:48:07
Add support for accepting ToS. 53e96aea10cb7559c84ca47b53c20b503031b2f1 Catalin(ux) M. BOIE 2015-07-13 15:45:46
Fixed suggestions' 'yesterday' report. d6b54bd62c35ca1e58b4b7e45bb5d3e48844712b Catalin(ux) M. BOIE 2015-07-09 03:30:36
More texts changes and ToS is bigger now. 062bd66f4c403116edd34d592ac668732a0dde05 Catalin(ux) M. BOIE 2015-07-09 03:29:36
If user has no repos, go directly to 'create' page. d22f90ace3af3241e5554c82bbf633d68a549be4 Catalin(ux) M. BOIE 2015-07-09 03:28:47
On account creation, we did not set the 'confirmed' field. 7e83a1661aa078ae9a3160aa43586c76307e56d0 Catalin(ux) M. BOIE 2015-07-09 03:27:41
Commit 09ff5d7b52d059a7fab09427d8e6d12319a53804 - duilder updates (error out if head is not a tag
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-07-14 20:27
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-07-14 20:27
Parent(s): c28468b1cf0488f8f98b04aeb6ba26429ee91807
Signing key:
Tree: baebdc87ab6d4affc13b3f06d81aaf0547cf0e71
File Lines added Lines deleted
duilder 2 2
File duilder changed (mode: 100755) (index d8bce35..06c624a)
... ... function duilder_git()
61 61 fi fi
62 62
63 63 echo "[*] Testing if a tag is present for HEAD..." echo "[*] Testing if a tag is present for HEAD..."
64 D=`git describe | egrep -- '-g[0-9a-fA-F]*$'`
65 if [ "${D}" != "" ]; then
64 D=`git describe | sed -e 's/^.*-g[0-9a-fA-F]*$//'`
65 if [ "${D}" = "" ]; then
66 66 echo "No annotated tag preset for HEAD! Please add one!" echo "No annotated tag preset for HEAD! Please add one!"
67 67 exit 1 exit 1
68 68 fi fi
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