utils/index-*
should support starting from existing Git repositories
#342
Labels
utils/index-*
should support starting from existing Git repositories
#342
Current behavior: both
index-repository
andindex-all-repositories
do agit clone --bare $first_remote_url $elixir_root/$project/repo
. That fails if the folder exists.Ideal procedure:
git init
, gracefully failing if folder already exists.git init
didn't fail.git fetch --tags --jobs=... remote1 remote2 ...
call. We benefit from parallelism.That will work well once
update.py
is fixed to not have its indexing depend on the order of parsed tags.The text was updated successfully, but these errors were encountered: