A new version of a julia package causes a problem in my project. I could use Pkg.pin
to use the package at some version and I could use Pkg.checkout
to use the package in a certain github branch, but how to use the package at a certain github commit? So I could find out which commit actually causes the issue in my project.
Asked
Active
Viewed 916 times
3

Consistency
- 2,884
- 15
- 23
2 Answers
2
Every Julia package is just a git repo, you could always do source code management stuff using git from the command line, and use some full-featured git commands like git bisect
to find out that commit.
X-ref: How to use git bisect?

Gnimuc
- 8,098
- 2
- 36
- 50
-
Thank you for the answer. I tried the git bisect command, and it seems really useful!! – Consistency Nov 12 '17 at 02:23