teracyhq / dev

The only truly universal productive development platform with Docker on macOS, Linux and Windows! http://blog.teracy.com/2016/12/20/teracy-dev-the-only-truly-universal-productive-development-platform-with-docker-on-macos-linux-and-windows/ http://slides.teracy.net/hoatle/productive-dev-workflow-with-teracy-dev/latest/
http://dev.teracy.org/docs
BSD 3-Clause "New" or "Revised" License
86 stars 31 forks source link

git sync: tag not found bug should be fixed #593

Closed hoatle closed 5 years ago

hoatle commented 5 years ago

something changes git github repo as the new tag configured did not work for git sync at the moment

$ vagrant status
fatal: ambiguous argument 'v0.6.0-a7': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
fatal: ambiguous argument 'v0.6.0-a7': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
[TeracyDev::Location::GitSynch][WARN]: tag not found: v0.6.0-a7

A workaround for this is that users must fetch new tags before $ vagrant status

$ git fetch --tags
remote: Enumerating objects: 26, done.
remote: Counting objects: 100% (26/26), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 26 (delta 15), reused 25 (delta 15), pack-reused 0
Unpacking objects: 100% (26/26), done.
From https://github.com/teracyhq/dev
 * [new tag]         v0.6.0-a7  -> v0.6.0-a7
$ vagrant status
Previous HEAD position was 9164282 Merge pull request #583 from hoatle/tasks/#582-v0.6.0-a6-release
HEAD is now at a817b5c Merge pull request #592 from hoatle/tasks/#590-v0.6.0-a7-release
[TeracyDev::Loader][INFO]: reloading...
hoatle commented 5 years ago

should be fixed by v0.6.0-a8

hoatle commented 5 years ago

verified, closed.

hoatle commented 5 years ago

note