mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
726 B
31 lines
726 B
![]()
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
# With this, clone all release related repos.
|
||
|
|
||
|
# 1) Check that this script has no parameters
|
||
|
if [ $# -ne 0 ]
|
||
|
then
|
||
|
echo "Syntax, no parameters:"
|
||
|
echo " ./releases/clone-release-repos.sh"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# 2) Create directories, clone repos
|
||
|
mkdir ../w
|
||
|
cd ../w
|
||
|
git clone git@github.com:wekan/wekan.github.io.git
|
||
|
git clone git@github.com:wekan/wekan-ondra.git
|
||
|
git clone git@github.com:wekan/wekan-gantt-gpl.git
|
||
|
|
||
|
# 3) Set upstreams
|
||
|
cd wekan-ondra
|
||
|
git remote add upstream https://github.com/wekan/wekan
|
||
|
|
||
|
cd ../wekan-gantt-gpl
|
||
|
git remote add upstream https://github.com/wekan/wekan
|
||
|
|
||
|
# 4) Go back to Wekan repo directory
|
||
|
cd ../wekan
|
||
|
|
||
|
echo "Release repos ondra, gantt-gpl, and website cloned and upstreams set."
|