- gitlist.git
- scripts
- init.sh
This file ( 999B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
set -e
sudo rm -rf ./cache
mkdir -p ./cache
touch ./cache/.gitkeep
chmod 0770 ./cache
sudo rm -rf ./git-test/
mkdir -p ./git-test/
pushd ./git-test
for repo in "https://github.com/patrikx3/angular-compile" "https://github.com/patrikx3/onenote" "https://github.com/patrikx3/ramdisk" "https://github.com/patrikx3/openwrt-insomnia" "https://github.com/patrikx3/gitlist" "https://github.com/patrikx3/gitlist-workspace" "https://github.com/patrikx3/resume-web" "https://github.com/patrikx3/service-manager-tray-for-windows" "https://github.com/patrikx3/corifeus-web-material"
do
git clone --bare $repo
done
find . -name '*description*' |
while read filename;
do
echo "$(dirname ${filename:2} | cut -f 1 -d '.') test repository." > $filename
done
popd
sudo chmod 0777 ./git-test
cp ./artifacts/config.ini ./
composer install
chown $USER:$USER ./cache
chown $USER:$USER ./git-test
chown $USER:$USER ./config.ini