Reputation: 11
I'm making a conda package for a toolkit that was published on bitbucket. Looking through the documentation for the meta.yml file, specifically the source section, the possibilities are git_url and hg_url. The url given is .git, but not from github. Does this make any difference? Also, where do I then find the git_rev string?
Thank you!
source:
git_url: https://bitbucket.org/***/***.git
git_rev: master
edit: Added code in markdown format, removed attempted code pasting in comments.
Upvotes: 0
Views: 291
Reputation: 11
The git_url works so long as it is a .git link, not only if it is a github link. For git_rev on bitbucket, it is the branch that will be pulled from.
Upvotes: 1