-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add recurse
option in config
#235
Comments
Do you have a use case for circular dependencies? |
My particular use case is for avoiding circular dependencies (which admittedly, is bad practice to begin with). However, I think the As an aside: I suppose the |
Yeah, I'm just trying to understand how common this situation is to warrant a feature to prevent it. 😄 |
I see some overlap to #128 |
Good point @daniel-brosche. I think that |
To avoid recursive clones when there are circular dependencies,
gitman install --depth 1
can be used. However, this is risky as it requires the user to add it on everygitman install
call. It would be nice to have arecurse
field ingitman.yml
to provide a little more control.For example:
The text was updated successfully, but these errors were encountered: