-
Notifications
You must be signed in to change notification settings - Fork 13
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
issue when with copier 6.x #60
Comments
Thanks for pointing this. So the resolution is to go to v7. |
Hi, a related issue here, but with
It works fine with local folders, but not from Azure DevOps repos. Any ideas? My computer can connect normally with git to that repo outside of |
From the code it looks like a "git url" is required class Template:
"""Object that represents a template and its current state.
See [configuring a template][configuring-a-template].
Attributes:
url:
Absolute origin that points to the template.
It can be:
- A local path.
- A Git url. Note: if something fails, prefix the URL with `git+`. So, the solution that looks to work for me is the following: from copier import run_copy
run_copy("git+https://dev.azure.com/.....", "folder") Or, directly using the CLI: copier copy git+https://dev.azure.com/... folder |
Great, it indeed works with the |
For reference with copier 6.x if you do as in the README:
you will get:
if you upgrade to copier 7.x it works.
Alternatively you can bootstrap the project using this command instead:
May be we can change the readme to make it easier, not sure.
The text was updated successfully, but these errors were encountered: