From 2afc95188b2f5037c92fdcb27012e5b3c1c78d89 Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 16 Sep 2021 18:51:35 +0200 Subject: [PATCH] add more clone commands --- bash_profile.d/pEp.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/bash_profile.d/pEp.sh b/bash_profile.d/pEp.sh index 9ab5f6e..05ad16a 100644 --- a/bash_profile.d/pEp.sh +++ b/bash_profile.d/pEp.sh @@ -50,6 +50,24 @@ function clone_rce() { cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.rce .idea } +function clone_lipEpDatatypes() { + git clone https://gitea.pep.foundation/pEp.foundation/libpEpDatatypes.git . + cp $PEP_LOCAL_CONF_DIR/local.conf.libpEpDatatypes local.conf + cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.libpEpDatatypes .idea +} + +function clone_lipEpTransport() { + git clone https://gitea.pep.foundation/pEp.foundation/libpEpTransport.git . + cp $PEP_LOCAL_CONF_DIR/local.conf.libpEpTransport local.conf + cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.libpEpTransport .idea +} + +function clone_pitytest11() { + git clone https://gitea.pep.foundation/heck/PityTest11.git . + cp $PEP_LOCAL_CONF_DIR/local.conf.PityTest11 local.conf + cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.PityTest11 .idea +} + function clone_devWiki() { git clone ssh://wiki/var/lib/gitit/wikidata . }