-
Notifications
You must be signed in to change notification settings - Fork 1k
status empty after change in Gopkg #664
Comments
@flibustenet thanks for reporting. I think the cause of empty status is same as in #161 and we have a fix for it in #611, which would be landing soon. Empty |
Just to confirm, the empty status issue, I tried reproducing it with #611 and status informs what happened and how to fix it.
So we have a fix for it :) |
Regarding the empty
Not sure why or what's stopping us from fetching the latest rev when we have rev version. |
@sdboyer err... ^ 🙄 ? |
Ahh, I added the extra "fixes", but that is an open question. |
So the problem with "latest" is that it necessarily assumes some kind of nonbranching forward path from the point we're currently at. Some systems - e.g. svn - always have a linear ordering of revisions, so they can provide this. git, bzr, and hg do not - given only a revision, there could be any number of reachable tip commits from it, because they all construct history as a graph. semver and branch constraints indicate to the system how the user wants to think of what "latest" means - with semver, it's through the ordering of version numbers; with branches, it's through whatever system the underlying vcs has for constructing a branch history. |
gonna re-close this though, we can deal with it as part of #663 (or another issue) |
First i create Gopkg.tom with
Then i change to get a revision
(this revision is just one before master)
Now dep status is empty. It should say that i need to upgrade isn't it ?
After dep ensure, dep status show the current revision.
I would like to see that the lastest is 2704adc878c21e1329f46f6e56a1c387d788ff94
When i put
branch="master"
dep status is also emptyHope it'll help
The text was updated successfully, but these errors were encountered: