From e500c775d41034fcad5dc7a6f4762667a3f168e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Val=C3=AD=C4=8Dek?= Date: Sat, 25 Jun 2022 23:55:07 +0200 Subject: [PATCH] added submodule to idea, remove obsolette bash file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Václav Valíček --- .idea/vcs.xml | 1 + old/checker/cloner-lib-auth | 18 ------------------ 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 old/checker/cloner-lib-auth diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 94a25f7..e3e423e 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/old/checker/cloner-lib-auth b/old/checker/cloner-lib-auth deleted file mode 100644 index 312214e..0000000 --- a/old/checker/cloner-lib-auth +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -# library made for sourcing - just to prepare git auth environment - -function prepareGitAuth(){ - # usage - # $1 - config directory - confdir=$1/auth - [ -d $confdir ] || mkdir $confdir - [ -d $confdir/ssh ] || mkdir $confdir/ssh - - chmod 0700 $confdir - - # git configure http authenticator - git config --global credential.helper "store --file=$confdir/git-credentials" - # git configure ssh auth - git config --global core.sshcommand "ssh -i $confdir/ssh/identity -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o BatchMode=yes -q" -} -