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 9ea8a34050bc2ce4c53e942834f34eaffa5d4f06

If nothing found in a folder, xargs will fail
Author: Catalin(ux) M. BOIE
Author date (UTC): 2017-03-02 19:50
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2017-03-02 19:50
Parent(s): 4f63811dd434780c4342c087757b6003a9c20c9e
Signing key:
Tree: c3d8a6fb2188944f02fc85a3db61c5a1e5a1bf9e
File Lines added Lines deleted
Makefile.in 2 2
File Makefile.in changed (mode: 100644) (index 49fb9ac..60d110e)
... ... install: all
66 66 @ @
67 67 @echo "Fixing rights..." @echo "Fixing rights..."
68 68 @echo "Fixing rights: /var/lib dirs..." @echo "Fixing rights: /var/lib dirs..."
69 @-find $(I_VAR_LIB)/$(PRJ) -mindepth 1 -type d | xargs chmod -c 0700
69 @-find $(I_VAR_LIB)/$(PRJ) -mindepth 1 -type d -exec chmod -c 0700 {} \;
70 70 @echo "Fixing rights: /var/lib files..." @echo "Fixing rights: /var/lib files..."
71 @-find $(I_VAR_LIB)/$(PRJ) -type f | xargs chmod -c 0600
71 @-find $(I_VAR_LIB)/$(PRJ) -type f -exec chmod -c 0600 {} \;
72 72 @mkdir -pv --mode=0700 $(I_VAR_LIB)/$(PRJ)/tmp @mkdir -pv --mode=0700 $(I_VAR_LIB)/$(PRJ)/tmp
73 73 @-chown -R rocketgit:rocketgit $(I_VAR_LIB)/$(PRJ) @-chown -R rocketgit:rocketgit $(I_VAR_LIB)/$(PRJ)
74 74 @-chown root:root $(I_VAR_LIB)/$(PRJ)/worker @-chown root:root $(I_VAR_LIB)/$(PRJ)/worker
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