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
As a follow-up to #707, perhaps it'd be helpful to be able to specify a git repo, which the crawler would then clone locally.
Looks like we already have git installed in the image. The main addition would be how to specify the repo, for max flexibility.
Perhaps it could be: --customBehaviors git+https://git.example.com/repo.git@branch#root/path where the @branch and /root/path would be option.
Eg. given git+https://git.example.com.git@branch#!/root/path, the crawler would do:
git clone --branch branch https://git.example.com.git /tmp/behaviors-repo
cd /tmp/behaviors-repo
cd root/path
and then grab all of the behaviors from the current directory.
The text was updated successfully, but these errors were encountered:
As a follow-up to #707, perhaps it'd be helpful to be able to specify a git repo, which the crawler would then clone locally.
Looks like we already have
git
installed in the image. The main addition would be how to specify the repo, for max flexibility.Perhaps it could be:
--customBehaviors git+https://git.example.com/repo.git@branch#root/path
where the@branch
and/root/path
would be option.Eg. given
git+https://git.example.com.git@branch#!/root/path
, the crawler would do:and then grab all of the behaviors from the current directory.
The text was updated successfully, but these errors were encountered: