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 cc12a3a5a95586b4533346ccf7fd4cfa652e7d6f

duilder updates
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-07-14 04:34
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-07-14 04:34
Parent(s): 2afd660c2f3ded308e9f1e76c844dcdb60f20dec
Signing key:
Tree: 21abc5a67a39a69fe95ea7889e4dcec96c0be696
File Lines added Lines deleted
duilder 12 1
File duilder changed (mode: 100755) (index 87c4881..d8bce35)
... ... function duilder_git()
60 60 exit 0 exit 0
61 61 fi fi
62 62
63 echo "[*] Testing if a tag is present for HEAD..."
64 D=`git describe | egrep -- '-g[0-9a-fA-F]*$'`
65 if [ "${D}" != "" ]; then
66 echo "No annotated tag preset for HEAD! Please add one!"
67 exit 1
68 fi
69
63 70 if [ "${EXPORT_GIT}" = "1" ]; then if [ "${EXPORT_GIT}" = "1" ]; then
64 71 echo "[*] Generating GIT tree for HTTP transport..." echo "[*] Generating GIT tree for HTTP transport..."
65 72 if [ ! -d "${GIT_DEST}/${PRJ}.git" ]; then if [ ! -d "${GIT_DEST}/${PRJ}.git" ]; then
 
... ... BIN="/bin"
321 328 USR_BIN="/usr/bin" USR_BIN="/usr/bin"
322 329 USR_SBIN="/usr/sbin" USR_SBIN="/usr/sbin"
323 330 USR_INCLUDE="/usr/include" USR_INCLUDE="/usr/include"
324 USR_LIB="/usr/lib"
331 if [ "`uname -m`" = "i686" ]; then
332 USR_LIB="/usr/lib"
333 else
334 USR_LIB="/usr/lib64"
335 fi
325 336 USR_SHARE="/usr/share" USR_SHARE="/usr/share"
326 337 USR_SHARE_DOC="/usr/share/doc/${PRJ}-${VER}" USR_SHARE_DOC="/usr/share/doc/${PRJ}-${VER}"
327 338 SBIN="/usr/sbin" SBIN="/usr/sbin"
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