You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 20, 2026. It is now read-only.
# initial grabbing, simply errors if the directory exists so re-running on the same repo does not hurt
cd"${workingdir}"
echo"git cloning"
whileread repo
do
git clone ${repo//https:\/\//http:\/\/foo:bar@}||echo"dir probably already existed (SVN)..."# no quotes here, git needs to see both arguments separatedly ;)
done<${scriptdir}/repos.git
echo"git svn cloning"
whileread repo
do
git svn clone ${repo}||echo"dir probably already existed (SVN)..."# no quotes here, git needs to see both arguments separatedly ;)