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
Something like scan -d DATASTORE --git-url https://github.com/python/cpython should work. This would automatically clone the requested repo and then scan it.
A new clones subdirectory within the datastore can be used for storing automatically cloned repos.
An automatically cloned repo should be cloned using the --mirror option, which pulls down additional objects compared to a regular git clone invocation.
If a Git URL is requested that was already automatically cloned, the existing clone state should be reused and updated if possible.
The text was updated successfully, but these errors were encountered:
* `scan` now supports a new `--git-url URL` option, allowing a Git repository
to be scanned without manually cloning it. Fixes #8 and #14.
* `scan` now supports GitHub enumeration, allowing the repositories
of a GitHub user or organization to be scanned in bulk
* Dockerfile now uses release profile instead of dev profile, and uses the `--locked` option
* The `reqwest` dependency now uses its `native-tls-vendored` feature
to avoid a runtime dependency on openssl on linux
Something like
scan -d DATASTORE --git-url https://github.com/python/cpython
should work. This would automatically clone the requested repo and then scan it.A new
clones
subdirectory within the datastore can be used for storing automatically cloned repos.An automatically cloned repo should be cloned using the
--mirror
option, which pulls down additional objects compared to a regulargit clone
invocation.If a Git URL is requested that was already automatically cloned, the existing clone state should be reused and updated if possible.
The text was updated successfully, but these errors were encountered: