dep are you using (dep version)?PS> dep version
dep:
version : devel
build date :
git hash :
go version : go1.8.3
go compiler : gc
platform : windows/amd64
dep command did you run?I ran dep init and expected it to create an empty project file but it seems that it starts adding packages automatically which could cause it to cycle through all possible tags/versions. In the case of docker, this is a lot of possibilities.
I removed the Docker imports and initialized the project.
PS> dep init -v
Root project is "gitlab.com/michael.golfi/appinsights-driver"
3 transitively valid internal packages
6 external packages imported from 6 projects
(0) โ select (root)
(1) ? attempt github.com/tonistiigi/fifo with 1 pkgs; 2 versions to try
(1) try github.com/tonistiigi/fifo@master
(1) โ select github.com/tonistiigi/fifo@master w/1 pkgs
(2) ? attempt golang.org/x/sys with 1 pkgs; 1 versions to try
(2) try golang.org/x/sys@master
(2) โ select golang.org/x/sys@master w/1 pkgs
(3) ? attempt github.com/jjjordanmsft/ApplicationInsights-Go with 1 pkgs; 4 versions to try
(3) try github.com/jjjordanmsft/[email protected]
(3) โ select github.com/jjjordanmsft/[email protected] w/1 pkgs
(4) ? attempt golang.org/x/net with 1 pkgs; 5 versions to try
(4) try golang.org/x/net@master
(4) โ select golang.org/x/net@master w/1 pkgs
(5) ? attempt github.com/gogo/protobuf with 1 pkgs; 19 versions to try
(5) try github.com/gogo/[email protected]
(5) โ select github.com/gogo/[email protected] w/2 pkgs
(6) ? attempt github.com/pkg/errors with 1 pkgs; 11 versions to try
(6) try github.com/pkg/[email protected]
(6) โ select github.com/pkg/[email protected] w/1 pkgs
(7) ? attempt github.com/sirupsen/logrus with 1 pkgs; 46 versions to try
(7) try github.com/sirupsen/[email protected]
(7) โ select github.com/sirupsen/[email protected] w/1 pkgs
(8) ? attempt golang.org/x/crypto with 1 pkgs; 1 versions to try
(8) try golang.org/x/crypto@master
(8) โ select golang.org/x/crypto@master w/1 pkgs
(9) ? revisit golang.org/x/sys to add 1 pkgs
(9) โ include 1 more pkgs from golang.org/x/sys@master
(9) ? attempt github.com/stretchr/testify with 1 pkgs; 9 versions to try
(10) try github.com/stretchr/[email protected]
(10) โ select github.com/stretchr/[email protected] w/2 pkgs
(10) ? attempt github.com/davecgh/go-spew with 1 pkgs; 3 versions to try
(11) try github.com/davecgh/[email protected]
(11) โ select github.com/davecgh/[email protected] w/1 pkgs
(11) ? attempt github.com/pmezard/go-difflib with 1 pkgs; 3 versions to try
(12) try github.com/pmezard/[email protected]
(12) โ select github.com/pmezard/[email protected] w/1 pkgs
โ found solution with 14 packages from 11 projects
Solver wall times by segment:
b-gmal: 35.4328057s
b-list-pkgs: 35.0495682s
b-list-versions: 11.514452s
b-source-exists: 3.0243564s
b-deduce-proj-root: 704.5521ms
new-atom: 10.7701ms
select-atom: 4.5718ms
satisfy: 2.5195ms
select-root: 2.0031ms
add-atom: 999.2ยตs
other: 0s
TOTAL: 1m25.7465981s
Using ^0.5.0 as constraint for direct dep github.com/gogo/protobuf
Locking in v0.5 (342cbe0) for direct dep github.com/gogo/protobuf
Locking in v1.1.0 (346938d) for transitive dep github.com/davecgh/go-spew
Locking in master (8b4580a) for transitive dep golang.org/x/sys
Locking in master (a8b9294) for transitive dep golang.org/x/net
Using ^0.8.0 as constraint for direct dep github.com/pkg/errors
Locking in v0.8.0 (645ef00) for direct dep github.com/pkg/errors
Using ^1.0.3 as constraint for direct dep github.com/sirupsen/logrus
Locking in v1.0.3 (f006c2a) for direct dep github.com/sirupsen/logrus
Locking in master (94eea52) for transitive dep golang.org/x/crypto
Using ^1.1.4 as constraint for direct dep github.com/stretchr/testify
Locking in v1.1.4 (69483b4) for direct dep github.com/stretchr/testify
Locking in v1.0.0 (792786c) for transitive dep github.com/pmezard/go-difflib
Using master as constraint for direct dep github.com/tonistiigi/fifo
Locking in master (fbfb6a1) for direct dep github.com/tonistiigi/fifo
Using ^0.1.0-alpha as constraint for direct dep github.com/jjjordanmsft/ApplicationInsights-Go
Locking in v0.1.0-alpha (041faba) for direct dep github.com/jjjordanmsft/ApplicationInsights-Go
(1/11) Wrote github.com/jjjordanmsft/[email protected]
(2/11) Wrote github.com/pkg/[email protected]
(3/11) Wrote github.com/pmezard/[email protected]
(4/11) Wrote github.com/stretchr/[email protected]
(5/11) Wrote github.com/sirupsen/[email protected]
(6/11) Wrote github.com/davecgh/[email protected]
(7/11) Wrote github.com/tonistiigi/fifo@master
(8/11) Wrote golang.org/x/sys@master
(9/11) Wrote golang.org/x/crypto@master
(10/11) Wrote golang.org/x/net@master
(11/11) Wrote github.com/gogo/[email protected]
After adding back the docker imports:
PS> dep init -v
Getting direct dependencies...
Checked 6 directories for packages.
Found 8 direct dependencies.
Root project is "gitlab.com/michael.golfi/appinsights-driver"
3 transitively valid internal packages
11 external packages imported from 8 projects
(0) โ select (root)
(1) ? attempt github.com/docker/go-plugins-helpers with 1 pkgs; 1 versions to try
(1) try github.com/docker/go-plugins-helpers@master
(1) โ select github.com/docker/go-plugins-helpers@master w/1 pkgs
(2) ? attempt github.com/jjjordanmsft/ApplicationInsights-Go with 1 pkgs; 4 versions to try
(2) try github.com/jjjordanmsft/[email protected]
(2) โ select github.com/jjjordanmsft/[email protected] w/1 pkgs
(3) ? attempt github.com/tonistiigi/fifo with 1 pkgs; 2 versions to try
(3) try github.com/tonistiigi/fifo@master
(3) โ select github.com/tonistiigi/fifo@master w/1 pkgs
(4) ? attempt golang.org/x/sys with 1 pkgs; 1 versions to try
(4) try golang.org/x/sys@master
(4) โ select golang.org/x/sys@master w/1 pkgs
(5) ? attempt golang.org/x/net with 1 pkgs; 5 versions to try
(5) try golang.org/x/net@master
(5) โ select golang.org/x/net@master w/1 pkgs
(6) ? attempt github.com/pkg/errors with 1 pkgs; 11 versions to try
(6) try github.com/pkg/[email protected]
(6) โ select github.com/pkg/[email protected] w/1 pkgs
(7) ? attempt github.com/docker/go-connections with 1 pkgs; 9 versions to try
(7) try github.com/docker/[email protected]
(7) โ select github.com/docker/[email protected] w/1 pkgs
(8) ? revisit golang.org/x/net to add 1 pkgs
(8) โ include 1 more pkgs from golang.org/x/net@master
(8) ? attempt github.com/gogo/protobuf with 1 pkgs; 19 versions to try
(9) try github.com/gogo/[email protected]
(9) โ select github.com/gogo/[email protected] w/2 pkgs
(9) ? attempt github.com/stretchr/testify with 1 pkgs; 9 versions to try
(10) try github.com/stretchr/[email protected]
(10) โ select github.com/stretchr/[email protected] w/2 pkgs
(10) ? attempt github.com/davecgh/go-spew with 1 pkgs; 3 versions to try
(11) try github.com/davecgh/[email protected]
(11) โ select github.com/davecgh/[email protected] w/1 pkgs
(11) ? attempt github.com/Microsoft/go-winio with 1 pkgs; 29 versions to try
(12) try github.com/Microsoft/[email protected]
(12) โ select github.com/Microsoft/[email protected] w/1 pkgs
(12) ? revisit golang.org/x/sys to add 1 pkgs
(13) โ include 1 more pkgs from golang.org/x/sys@master
(12) ? attempt github.com/pmezard/go-difflib with 1 pkgs; 3 versions to try
(14) try github.com/pmezard/[email protected]
(14) โ select github.com/pmezard/[email protected] w/1 pkgs
(13) ? attempt github.com/sirupsen/logrus with 1 pkgs; 46 versions to try
(15) try github.com/sirupsen/[email protected]
(15) โ select github.com/sirupsen/[email protected] w/1 pkgs
(14) ? attempt golang.org/x/crypto with 1 pkgs; 1 versions to try
(16) try golang.org/x/crypto@master
(16) โ select golang.org/x/crypto@master w/1 pkgs
(15) ? attempt github.com/coreos/go-systemd with 1 pkgs; 17 versions to try
(17) try github.com/coreos/go-systemd@v15
(17) โ select github.com/coreos/go-systemd@v15 w/1 pkgs
(16) ? attempt github.com/docker/docker with 4 pkgs; 206 versions to try
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.13.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.13.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.6 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.5 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.4 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.3 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.12.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.11.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.11.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.11.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.10.3 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.10.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.10.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.10.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.9.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.9.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.8.3 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.8.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.8.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.8.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.7.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.7.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.6.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.6.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.6.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.5.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.4.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.4.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.3.3 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.3.2 has problem subpkg(s):
(19) github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.3.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.3.0 has problem subpkg(s):
(19) github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.2.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.1.2 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.1.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.1.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.0.1 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v1.0.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(19) โ github.com/docker/docker at v0.12.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout fb99f992c081a1d433c97c99ffb46d12693eeb76]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 15209c380c3f510e3f8d5ba1ff5fcc5cc8db3357]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout dc9c28f51d669d6b09e81c2381f800f1a33bb659]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 867b2a90c228f62cdcd44907ceef279a2d8f1ac5]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2b3fdf2344fee3affc44c93a034ce894af4d6193]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a1598d1e1c157388f3b07415729de28f4d205e49]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout cc3a8c8d8ec57e15b7b7316797132d770408ab1a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout bc3b2ec0622f50879ae96f042056b6bd2e0b4fba]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c348c04fdfb00e013be9db15d37728e04fb94b76]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 010d74ec2f3dfefea5cafa602bce5cdeac3a0c19]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 8502ad4ba7b5410eb55f3517a801b33f61b1f625]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 28b162eeb48002e1824a1b43bbc864e93af8e26b]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 88df052197fc16f578ed0551ad654dd67bb3a39a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0d078b65817fc91eba916652b3f087a6c2eef851]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 53f1bf0f995d4c0e6af3eb14cd76a1b049c851a2]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 360a694c52a48e0305317a18c59dc5ddc44859ad]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3ff845904daabc47ed8f40b2edf3711b364ef206]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e8da76605f11c10d964c251a944ca5cbcdf1518a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout b0a49a30c78e8cafecac455aa0a306ac1792a644]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ca5913ff3ec0648d6ad9887abc6cf986fddee1a2]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 5105263dacc9372771d9bf478dcac6fceedb9a30]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f4a4f1ca875a1f68d5950e67b34b57542f504ecd]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 5d25f3232c38d6a7ed31860948058b8ec1d95656]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e99a99eb6ee7257c0b11312bec33fe27cffdaaaa]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3b89d13aaf76cd363d62955c050675ccd68a7296]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 51f6c4a7372450d164c61e0054daf0223ddbd909]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout fe0378e9b36b89d5eb01b4c2bf8c160305a958a7]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout d67d5dd96307f3c6f393b0d6acd73a30e48caa3c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 9fe8bfb2bc4b00a69db16e04e45c065090d1af2d]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ecd1fff9b001a0379d06d0d115da5106c66056e7]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 02f0c1e46d1d73677aed899c1f0deaa69ab11ffc]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout da5bb4db96b369365c4b913d9009d8bb1d0f51f4]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2e7649beda7c820793bd46766cbc2cfeace7b168]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7b6f50772cc7003fede23e74f70f8dc76b96a434]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a8ae398bf52e97148ee7bd0d5868de2e15bd297f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 8d73740343778651c09160cde9661f5f387b36f4]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 822056094aa31c224e78cd568e02fe5458a0eecc]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e289308dff229bf70852f7c549cc7aafeedd4ec9]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 06767fb99d997fe939febb086e8fa12414419053]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 4f202cd07f3d9281e186024bbf6770bf93537235]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 5ffd63070f9b4d7516d58a4b3691be36d5ae93c6]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout d42639e5c5623109acd302ddead237ce4d9c2617]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 90668a8a997c5db27ffdcc25c7921c63526b62f4]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 97badbd29e15296b2b4cb55b01246f658c5e9de6]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3b6c540fe8313035de0f0b00de52d7197f8bc665]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ee82870ff78e6d9e0f0ce7674d6a065f9d02f67a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e34e44e8e6097e0a54bc0a96581f79909f7d9a42]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 40ebe78bb1d9750505d594d10bc9eb6979ef63ea]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a4fc52305abfcbc3976fa203898a1c3c8409a292]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout dce5a06aba8e79e8e5fe5724676961319def6001]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 8293a0d53350b9ebb584988efe3096c313a13ad4]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 57e2126a02f8b96b0542df7f6a573233d8419bb1]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 33c2f07fc7b2d132e1f7cd30a37717ed15c086bd]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 90d35abf7b3535c1c319c872900fbd76374e521c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c57fdb2a14cfba584686ddad909e3006284d10aa]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2878a859b5ea11d4d380a9e65c3db51eead84816]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 89658bed64c2a8fe05a978e5b87dbec409d57a0f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2f35d73b7dc7a9e234ea06f6145a26c37472c775]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout d2532c636f03ea12744c4aec62562d78e5cde8ae]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 4845c567eb35d68f35b0b1713a09b0c8d47fe67e]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout eef6495eddab52828327aade186443681ed71a4e]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f5ec1e2936dcbe7b5001c2b817188b095c700c27]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3476dbfb369a05aff504826721704f192a3f2788]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c6d412e329c85f32a4b2269b49aaa0794affcf88]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ce07fb6b0f1b8765b92022e45f96bd4349812e06]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 60ccb2265b0574d6c1c1090876a1d1ab32bed60e]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 54f71fd84a0dabab9d45f5fe7543a028b1200ca1]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2527cfcc49744f56a8d31c420a3ca4657f9fec2e]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 48a9e53d70472bebad908b273351d8a07939a764]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2f2d055013b2adabf8a526bf565602c16b30aecd]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 43cc971d7694bc05c3c8b9641364f0a4e3775817]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 88862e707affccf9c46347361689b2ffef39dc5c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 4d92237de1b34c8bf99e549db27b83fd087cd765]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 1f9b3ef9e9c74c2905780ac5347d018646a20022]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 75fd88ba8938f120ce1f2a21b19cf13c12071b16]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e9e3ab6b6a718118a5928e726ab1297f0b8ef5cd]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0d5bc84d061ee44d8af17efb5361be92cd182c50]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout bad4d1299e65bc74723215e5c7d4fc1b880e5575]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout cb0ca64a3486a7d99b74cc23b1fe70c43e317b54]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ad9538afc2e32bc99a62950f0eb50476cebf5c66]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 45bed2cc80c242936d94817644783c997ee4c033]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 236317fa56ab2cbe022cea88c6bda1a7a566998c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7889dc71a2e860590d3e3c4051d6008bc94f8b47]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a3f206372f58f45fb5f738d3a1bf1b8e78ee9cbf]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e4a0dbc47232e3a9da4cfe6ce44f250e6e85ed43]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 91e29e815d18420e4251a8d6b70e5e9c1a5bd3c2]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 906eacd586853e9e79ea2bd5df7e13ba8a28cd60]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 1f136c1f8589dc5f7b9ea102df9a30e2443beb1d]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 11795730f11001db21dc569f71172e3af14d5078]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c90c70c854f1b7e599c88e2abdf444f4c8705b5a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 6178547ba49cb9382486ea4dba0bd38575ceeee3]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f5e2b400ec7b96538df80f728eb08c5afa07d85f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout eabf97a9a3e6204a23dce635cf56040b0613ec8f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 388f5448340600460ffe77ccea9ea3841e69f0f5]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7f4e4ac6f9fd9bf46f86e6eb422cad145c75dba2]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 9968dd63a4888707e524c54d9c5aaf68569ac554]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 389f874246948235674146a998b8cdcd8e2ba84b]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 89dafc42dfae12817be6ec72c3e152cca7765320]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 840112f9b7aba57a1f27d9f1e15d60f18e8c7490]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 6b8415bd0e185a09df4bcf433ae765621bac93a3]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 08c24cc221d182afa7fbe984398ffc6df2dcbb2a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c1cdc6ee1c5b3556c530bddc5667c3ace2c89f10]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 677c5930737f433b03a929360c442ec57c0f9481]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout aba59811293ace065e90c19124a0efdbb5884d8a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 93180046ad66c89d757992b4039043e8678fd41f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e6f5a3c7dcbad0a50f0a933cdea026f334299069]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2100b94e6594e03d5d1491053910d8a832ef587d]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 60d36f712dbfe8df262133a09bc0ccb3a02dff79]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 9291a0e406963c6953d8247932ec947d36c546d8]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 28220acecc4c9cc26e7c669190c7cda2d51d753b]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 696147bdfa53ccfa2a18c07d8115424c2bb98dd7]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 8a9d4eaa6e1645c66cd8047e87b8df323a6e7082]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 4f1c66a50e517c0d393fef168bb1a1519c03d22f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c2e658d3aa9c87aec620f7537f2b6f36ec992d7d]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3ff5c8688335aaf3c870918a596533f651987892]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f8f912ac2a10ae81bbc6274dd1fb203269260263]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f4176020f325869274676b10d9afe8395e5e8fe3]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout cc5c79129faa8af9e70b82ddc8f3f95e9be084ed]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 94159c95599842139effdcaddf22bf200c2be7b2]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7ddecf74becad0c6e820149d7ff27021f68a640b]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 395ccedc9bd7dfa7aa0873064bf5abeca48d3e3a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7e26e41bce615d882e8a575fcf7aea5e00cce771]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout f181f776c7815f8c81a8106a332208471df7fb1c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout fc4825d5ef5e0e1af74904208f9b925c22f0b6f8]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e2e39fc1cf53e6e657834cff35e129ca1871e981]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 20d4e6f29ef5c7b8bf2f55aa2bedb0130868cd2c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c5ee1494af86a71b76d4d5066528a7b141e83185]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 746e83023052e32b2cba8fccf67b6232e5c86886]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a1cae772c417cd61aa9eef0445a6c968f35e4b9a]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c02092d656b91fef13ece82333c1fd2f02acba54]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a3934504f905e29187c895a44ddf5ed8ce874414]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 7e803ba6b2ed52d9e67de8be1cb0eb459017f8cc]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ea7811c83d913db91948cd4f696cf34b139da855]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 24586d7af522e8d13ea0363437b4062aeb77cf70]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0c38f86e5e799e71866a3ee2f876c170e71c68d0]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3c20a8cdc7b1b323696c5720c23480971f55ccef]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 1781b18deb0e9e0aab1805c4a35f3e952b082894]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout b67c94a96323fa76bbca139f6c2b277ad1e06398]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout e245abcc4dca93c6551f02a8ae21ce39a9eb7510]: exit status 1
(18) try github.com/docker/docker@master
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 88e36dcc76c08d13fd83f91fa7dbe4a6ff4c83b8]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 175f1829377413b1887a0c38232b1cda975fd71c]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 473c5701cb66403b0535a5c01845cb0f27fbeb47]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout ceb9e244d934d87104b7e4e0032f1d389e47fd64]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout a1e8b2ede880ffa159c72b4d62c827475fbff531]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 89658bed64c2a8fe05a978e5b87dbec409d57a0f]: exit status 1
(18) try github.com/docker/docker@docs
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 301bfbdd21c7795c41611bf8a8c31a0136b91bde]: exit status 1
(18) try github.com/docker/docker@moby
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 252f7246a740b7a1d502638b4026ec81f359e0e1]: exit status 1
(18) try github.com/docker/docker@autorun/1
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 30d327d37ecca58a41f4a370b581ee638ed3ff04]: exit status 1
(18) try github.com/docker/docker@builder/1
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 38b83734341646a0132bb2620a6798a92d919a3f]: exit status 1
(18) try github.com/docker/docker@builder/2
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c97a1aada601fe49e7094570d740e3f6b4464011]: exit status 1
(18) try github.com/docker/docker@debian/0.1.1-1
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout bf369bd1b80fc132240af0b50ed272fc8f262ca1]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 9aa451ec5fd6878d10ead96b4e31354c8e5c87f0]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0fa541496bc662fd07e3cd6f9842b92bacbe7609]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 3696d1fff5d728f16f7be02ef6823deaabed7b1e]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 88b2dd9d04891f2c30dbc59e5696c27b3c662d2f]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 40ea65a1b5e51b79fdcfa9a918693660fe4115d0]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 8c16b5eb4dd67ea86d5ade2e3a56afdfaa859ad1]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 80965a35c1c571ff3fcfa1d7423f784aa703728d]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0dc92ee015619640f6457fdd6d97031313bcd24f]: exit status 1
(18) try github.com/docker/docker@upstream/0.1.1
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout c017c7baa41e6f9ce03c18228e1a950cf5bdba3a]: exit status 1
(18) try github.com/docker/docker@upstream/0.1.2
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout b400d78b19ee81752680fe0d5d41596bf527b110]: exit status 1
(18) try github.com/docker/docker@upstream/0.1.3
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout b1acd0a7b0513b31253195fc94e5d8a92b10ebe6]: exit status 1
(18) try github.com/docker/docker@upstream/0.1.4
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 222c04a7e71a19491559cc81c6541f7474755400]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 2d51863b706537b988785d03d0f983242948e328]: exit status 1
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout 0e63b073ac8f33335a4d4df3f2aa22120e0b7f43]: exit status 1
(18) โ no more versions of github.com/docker/docker to try; begin backtrack
(17) โ backtrack: no more versions of github.com/coreos/go-systemd to try
(16) โ backtrack: no more versions of golang.org/x/crypto to try
(15) โ backtrack: no more versions of github.com/sirupsen/logrus to try
(14) โ backtrack: no more versions of github.com/pmezard/go-difflib to try
(13) โ backtrack: popped 1 pkgs from golang.org/x/sys
(12) โ backtrack: no more versions of github.com/Microsoft/go-winio to try
(11) โ backtrack: no more versions of github.com/davecgh/go-spew to try
(10) โ backtrack: no more versions of github.com/stretchr/testify to try
(9) โ backtrack: no more versions of github.com/gogo/protobuf to try
(8) โ backtrack: popped 1 pkgs from golang.org/x/net
(7) โ backtrack: no more versions of github.com/docker/go-connections to try
(6) โ backtrack: no more versions of github.com/pkg/errors to try
(5) โ backtrack: no more versions of golang.org/x/net to try
(4) โ backtrack: no more versions of golang.org/x/sys to try
(3) โ backtrack: no more versions of github.com/tonistiigi/fifo to try
(2) โ backtrack: no more versions of github.com/jjjordanmsft/ApplicationInsights-Go to try
(1) โ backtrack: no more versions of github.com/docker/go-plugins-helpers to try
โ solving failed
Solver wall times by segment:
b-list-pkgs: 4m43.6238123s
b-gmal: 54.8828117s
b-list-versions: 22.0922899s
new-atom: 5.7816583s
b-source-exists: 2.4372699s
b-deduce-proj-root: 533.3149ms
backtrack: 98.5758ms
satisfy: 19.8052ms
other: 9.9559ms
unselect: 8.7524ms
select-atom: 7.9673ms
select-root: 0s
add-atom: 0s
TOTAL: 6m9.4962136s
init failed: unable to solve the dependency graph: Solving failure: No versions of github.com/docker/docker met constraints:
v1.13.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.13.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.6: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.5: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.4: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.3: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.2: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.12.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.11.2: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.11.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.11.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.10.3: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.10.2: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.10.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.10.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.9.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.9.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.8.3: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.8.2: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.8.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.8.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.7.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.7.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.6.2: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.6.1: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.6.0: Could not introduce github.com/docker/[email protected], as its subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.5.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.4.1: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.4.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.3.3: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.3.2: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.3.1: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).)
v1.3.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).)
v1.2.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).) Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v1.1.2: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).)
v1.1.1: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).)
v1.1.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).)
v1.0.1: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).)
v1.0.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).) Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).)
v0.12.0: Could not introduce github.com/docker/[email protected] due to multiple problematic subpackages:
Subpackage github.com/docker/docker/pkg/ioutils is missing. (Package is required by (root).) Subpackage github.com/docker/docker/api/types/plugins/logdriver is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger is missing. (Package is required by (root).) Subpackage github.com/docker/docker/daemon/logger/jsonfilelog is missing. (Package is required by (root).)
v0.11.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout fb99f992c081a1d433c97c99ffb46d12693eeb76]: exit status 1
v0.11.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 15209c380c3f510e3f8d5ba1ff5fcc5cc8db3357]: exit status 1
v0.10.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout dc9c28f51d669d6b09e81c2381f800f1a33bb659]: exit status 1
v0.9.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 867b2a90c228f62cdcd44907ceef279a2d8f1ac5]: exit status 1
v0.9.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2b3fdf2344fee3affc44c93a034ce894af4d6193]: exit status 1
v0.8.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a1598d1e1c157388f3b07415729de28f4d205e49]: exit status 1
v0.8.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout cc3a8c8d8ec57e15b7b7316797132d770408ab1a]: exit status 1
v0.7.6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout bc3b2ec0622f50879ae96f042056b6bd2e0b4fba]: exit status 1
v0.7.5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c348c04fdfb00e013be9db15d37728e04fb94b76]: exit status 1
v0.7.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 010d74ec2f3dfefea5cafa602bce5cdeac3a0c19]: exit status 1
v0.7.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 8502ad4ba7b5410eb55f3517a801b33f61b1f625]: exit status 1
v0.7.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 28b162eeb48002e1824a1b43bbc864e93af8e26b]: exit status 1
v0.7.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 88df052197fc16f578ed0551ad654dd67bb3a39a]: exit status 1
v0.7.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0d078b65817fc91eba916652b3f087a6c2eef851]: exit status 1
v0.6.7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 53f1bf0f995d4c0e6af3eb14cd76a1b049c851a2]: exit status 1
v0.6.6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 360a694c52a48e0305317a18c59dc5ddc44859ad]: exit status 1
v0.6.5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3ff845904daabc47ed8f40b2edf3711b364ef206]: exit status 1
v0.6.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e8da76605f11c10d964c251a944ca5cbcdf1518a]: exit status 1
v0.6.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout b0a49a30c78e8cafecac455aa0a306ac1792a644]: exit status 1
v0.6.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ca5913ff3ec0648d6ad9887abc6cf986fddee1a2]: exit status 1
v0.6.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 5105263dacc9372771d9bf478dcac6fceedb9a30]: exit status 1
v0.6.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f4a4f1ca875a1f68d5950e67b34b57542f504ecd]: exit status 1
v0.5.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 5d25f3232c38d6a7ed31860948058b8ec1d95656]: exit status 1
v0.5.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e99a99eb6ee7257c0b11312bec33fe27cffdaaaa]: exit status 1
v0.5.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3b89d13aaf76cd363d62955c050675ccd68a7296]: exit status 1
v0.5.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 51f6c4a7372450d164c61e0054daf0223ddbd909]: exit status 1
v0.4.8: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout fe0378e9b36b89d5eb01b4c2bf8c160305a958a7]: exit status 1
v0.4.7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout d67d5dd96307f3c6f393b0d6acd73a30e48caa3c]: exit status 1
v0.4.6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 9fe8bfb2bc4b00a69db16e04e45c065090d1af2d]: exit status 1
v0.4.5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ecd1fff9b001a0379d06d0d115da5106c66056e7]: exit status 1
v0.4.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 02f0c1e46d1d73677aed899c1f0deaa69ab11ffc]: exit status 1
v0.4.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout da5bb4db96b369365c4b913d9009d8bb1d0f51f4]: exit status 1
v0.4.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2e7649beda7c820793bd46766cbc2cfeace7b168]: exit status 1
v0.4.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7b6f50772cc7003fede23e74f70f8dc76b96a434]: exit status 1
v0.4.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a8ae398bf52e97148ee7bd0d5868de2e15bd297f]: exit status 1
v0.3.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 8d73740343778651c09160cde9661f5f387b36f4]: exit status 1
v0.3.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 822056094aa31c224e78cd568e02fe5458a0eecc]: exit status 1
v0.3.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e289308dff229bf70852f7c549cc7aafeedd4ec9]: exit status 1
v0.3.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 06767fb99d997fe939febb086e8fa12414419053]: exit status 1
v0.3.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 4f202cd07f3d9281e186024bbf6770bf93537235]: exit status 1
v0.2.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 5ffd63070f9b4d7516d58a4b3691be36d5ae93c6]: exit status 1
v0.2.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout d42639e5c5623109acd302ddead237ce4d9c2617]: exit status 1
v0.2.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 90668a8a997c5db27ffdcc25c7921c63526b62f4]: exit status 1
v0.1.8: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 97badbd29e15296b2b4cb55b01246f658c5e9de6]: exit status 1
v0.1.7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3b6c540fe8313035de0f0b00de52d7197f8bc665]: exit status 1
v0.1.6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ee82870ff78e6d9e0f0ce7674d6a065f9d02f67a]: exit status 1
v0.1.5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e34e44e8e6097e0a54bc0a96581f79909f7d9a42]: exit status 1
v0.1.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 40ebe78bb1d9750505d594d10bc9eb6979ef63ea]: exit status 1
v0.1.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a4fc52305abfcbc3976fa203898a1c3c8409a292]: exit status 1
v0.1.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout dce5a06aba8e79e8e5fe5724676961319def6001]: exit status 1
v0.1.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 8293a0d53350b9ebb584988efe3096c313a13ad4]: exit status 1
v0.1.0: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 57e2126a02f8b96b0542df7f6a573233d8419bb1]: exit status 1
0.0.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 33c2f07fc7b2d132e1f7cd30a37717ed15c086bd]: exit status 1
v17.05.0-ce-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 90d35abf7b3535c1c319c872900fbd76374e521c]: exit status 1
v17.05.0-ce-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c57fdb2a14cfba584686ddad909e3006284d10aa]: exit status 1
v17.05.0-ce-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2878a859b5ea11d4d380a9e65c3db51eead84816]: exit status 1
v17.05.0-ce: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 89658bed64c2a8fe05a978e5b87dbec409d57a0f]: exit status 1
v17.04.0-ce-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2f35d73b7dc7a9e234ea06f6145a26c37472c775]: exit status 1
v17.04.0-ce-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout d2532c636f03ea12744c4aec62562d78e5cde8ae]: exit status 1
v17.04.0-ce: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 4845c567eb35d68f35b0b1713a09b0c8d47fe67e]: exit status 1
v17.03.2-ce-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout eef6495eddab52828327aade186443681ed71a4e]: exit status 1
v17.03.2-ce: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f5ec1e2936dcbe7b5001c2b817188b095c700c27]: exit status 1
v17.03.1-ce-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3476dbfb369a05aff504826721704f192a3f2788]: exit status 1
v17.03.1-ce: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c6d412e329c85f32a4b2269b49aaa0794affcf88]: exit status 1
v17.03.0-ce-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ce07fb6b0f1b8765b92022e45f96bd4349812e06]: exit status 1
v17.03.0-ce: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 60ccb2265b0574d6c1c1090876a1d1ab32bed60e]: exit status 1
v1.13.1-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 54f71fd84a0dabab9d45f5fe7543a028b1200ca1]: exit status 1
v1.13.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2527cfcc49744f56a8d31c420a3ca4657f9fec2e]: exit status 1
v1.13.0-rc7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 48a9e53d70472bebad908b273351d8a07939a764]: exit status 1
v1.13.0-rc6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2f2d055013b2adabf8a526bf565602c16b30aecd]: exit status 1
v1.13.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 43cc971d7694bc05c3c8b9641364f0a4e3775817]: exit status 1
v1.13.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 88862e707affccf9c46347361689b2ffef39dc5c]: exit status 1
v1.13.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 4d92237de1b34c8bf99e549db27b83fd087cd765]: exit status 1
v1.13.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 1f9b3ef9e9c74c2905780ac5347d018646a20022]: exit status 1
v1.13.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 75fd88ba8938f120ce1f2a21b19cf13c12071b16]: exit status 1
v1.12.5-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e9e3ab6b6a718118a5928e726ab1297f0b8ef5cd]: exit status 1
v1.12.4-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0d5bc84d061ee44d8af17efb5361be92cd182c50]: exit status 1
v1.12.3-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout bad4d1299e65bc74723215e5c7d4fc1b880e5575]: exit status 1
v1.12.2-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout cb0ca64a3486a7d99b74cc23b1fe70c43e317b54]: exit status 1
v1.12.2-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ad9538afc2e32bc99a62950f0eb50476cebf5c66]: exit status 1
v1.12.2-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 45bed2cc80c242936d94817644783c997ee4c033]: exit status 1
v1.12.1-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 236317fa56ab2cbe022cea88c6bda1a7a566998c]: exit status 1
v1.12.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7889dc71a2e860590d3e3c4051d6008bc94f8b47]: exit status 1
v1.12.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a3f206372f58f45fb5f738d3a1bf1b8e78ee9cbf]: exit status 1
v1.12.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e4a0dbc47232e3a9da4cfe6ce44f250e6e85ed43]: exit status 1
v1.12.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 91e29e815d18420e4251a8d6b70e5e9c1a5bd3c2]: exit status 1
v1.12.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 906eacd586853e9e79ea2bd5df7e13ba8a28cd60]: exit status 1
v1.12.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 1f136c1f8589dc5f7b9ea102df9a30e2443beb1d]: exit status 1
v1.11.2-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 11795730f11001db21dc569f71172e3af14d5078]: exit status 1
v1.11.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c90c70c854f1b7e599c88e2abdf444f4c8705b5a]: exit status 1
v1.11.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 6178547ba49cb9382486ea4dba0bd38575ceeee3]: exit status 1
v1.11.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f5e2b400ec7b96538df80f728eb08c5afa07d85f]: exit status 1
v1.11.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout eabf97a9a3e6204a23dce635cf56040b0613ec8f]: exit status 1
v1.11.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 388f5448340600460ffe77ccea9ea3841e69f0f5]: exit status 1
v1.11.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7f4e4ac6f9fd9bf46f86e6eb422cad145c75dba2]: exit status 1
v1.10.3-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 9968dd63a4888707e524c54d9c5aaf68569ac554]: exit status 1
v1.10.3-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 389f874246948235674146a998b8cdcd8e2ba84b]: exit status 1
v1.10.2-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 89dafc42dfae12817be6ec72c3e152cca7765320]: exit status 1
v1.10.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 840112f9b7aba57a1f27d9f1e15d60f18e8c7490]: exit status 1
v1.10.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 6b8415bd0e185a09df4bcf433ae765621bac93a3]: exit status 1
v1.10.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 08c24cc221d182afa7fbe984398ffc6df2dcbb2a]: exit status 1
v1.10.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c1cdc6ee1c5b3556c530bddc5667c3ace2c89f10]: exit status 1
v1.10.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 677c5930737f433b03a929360c442ec57c0f9481]: exit status 1
v1.9.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout aba59811293ace065e90c19124a0efdbb5884d8a]: exit status 1
v1.9.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 93180046ad66c89d757992b4039043e8678fd41f]: exit status 1
v1.9.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e6f5a3c7dcbad0a50f0a933cdea026f334299069]: exit status 1
v1.9.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2100b94e6594e03d5d1491053910d8a832ef587d]: exit status 1
v1.9.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 60d36f712dbfe8df262133a09bc0ccb3a02dff79]: exit status 1
v1.9.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 9291a0e406963c6953d8247932ec947d36c546d8]: exit status 1
v1.8.2-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 28220acecc4c9cc26e7c669190c7cda2d51d753b]: exit status 1
v1.8.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 696147bdfa53ccfa2a18c07d8115424c2bb98dd7]: exit status 1
v1.8.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 8a9d4eaa6e1645c66cd8047e87b8df323a6e7082]: exit status 1
v1.8.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 4f1c66a50e517c0d393fef168bb1a1519c03d22f]: exit status 1
v1.7.1-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c2e658d3aa9c87aec620f7537f2b6f36ec992d7d]: exit status 1
v1.7.1-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3ff5c8688335aaf3c870918a596533f651987892]: exit status 1
v1.7.1-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f8f912ac2a10ae81bbc6274dd1fb203269260263]: exit status 1
v1.7.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f4176020f325869274676b10d9afe8395e5e8fe3]: exit status 1
v1.7.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout cc5c79129faa8af9e70b82ddc8f3f95e9be084ed]: exit status 1
v1.7.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 94159c95599842139effdcaddf22bf200c2be7b2]: exit status 1
v1.7.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7ddecf74becad0c6e820149d7ff27021f68a640b]: exit status 1
v1.7.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 395ccedc9bd7dfa7aa0873064bf5abeca48d3e3a]: exit status 1
v1.6.0-rc7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7e26e41bce615d882e8a575fcf7aea5e00cce771]: exit status 1
v1.6.0-rc6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout f181f776c7815f8c81a8106a332208471df7fb1c]: exit status 1
v1.6.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout fc4825d5ef5e0e1af74904208f9b925c22f0b6f8]: exit status 1
v1.6.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e2e39fc1cf53e6e657834cff35e129ca1871e981]: exit status 1
v1.6.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 20d4e6f29ef5c7b8bf2f55aa2bedb0130868cd2c]: exit status 1
v1.6.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c5ee1494af86a71b76d4d5066528a7b141e83185]: exit status 1
v1.6.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 746e83023052e32b2cba8fccf67b6232e5c86886]: exit status 1
v1.5.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a1cae772c417cd61aa9eef0445a6c968f35e4b9a]: exit status 1
v1.5.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c02092d656b91fef13ece82333c1fd2f02acba54]: exit status 1
v1.5.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a3934504f905e29187c895a44ddf5ed8ce874414]: exit status 1
v1.5.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 7e803ba6b2ed52d9e67de8be1cb0eb459017f8cc]: exit status 1
v0.7.0-rc7: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ea7811c83d913db91948cd4f696cf34b139da855]: exit status 1
v0.7.0-rc6: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 24586d7af522e8d13ea0363437b4062aeb77cf70]: exit status 1
v0.7.0-rc5: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0c38f86e5e799e71866a3ee2f876c170e71c68d0]: exit status 1
v0.7.0-rc4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3c20a8cdc7b1b323696c5720c23480971f55ccef]: exit status 1
v0.7.0-rc3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 1781b18deb0e9e0aab1805c4a35f3e952b082894]: exit status 1
v0.7.0-rc2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout b67c94a96323fa76bbca139f6c2b277ad1e06398]: exit status 1
v0.7.0-rc1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout e245abcc4dca93c6551f02a8ae21ce39a9eb7510]: exit status 1
master: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 88e36dcc76c08d13fd83f91fa7dbe4a6ff4c83b8]: exit status 1
1.12.x: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 175f1829377413b1887a0c38232b1cda975fd71c]: exit status 1
1.13.x: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 473c5701cb66403b0535a5c01845cb0f27fbeb47]: exit status 1
17.03.x: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout ceb9e244d934d87104b7e4e0032f1d389e47fd64]: exit status 1
17.04.x: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout a1e8b2ede880ffa159c72b4d62c827475fbff531]: exit status 1
17.05.x: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 89658bed64c2a8fe05a978e5b87dbec409d57a0f]: exit status 1
docs: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 301bfbdd21c7795c41611bf8a8c31a0136b91bde]: exit status 1
moby: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 252f7246a740b7a1d502638b4026ec81f359e0e1]: exit status 1
autorun/1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 30d327d37ecca58a41f4a370b581ee638ed3ff04]: exit status 1
builder/1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 38b83734341646a0132bb2620a6798a92d919a3f]: exit status 1
builder/2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c97a1aada601fe49e7094570d740e3f6b4464011]: exit status 1
debian/0.1.1-1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout bf369bd1b80fc132240af0b50ed272fc8f262ca1]: exit status 1
docs-v1.11.2-2016-06-10: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 9aa451ec5fd6878d10ead96b4e31354c8e5c87f0]: exit status 1
docs-v1.12.0-2016-07-28: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0fa541496bc662fd07e3cd6f9842b92bacbe7609]: exit status 1
docs-v1.12.0-2016-07-29: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 3696d1fff5d728f16f7be02ef6823deaabed7b1e]: exit status 1
docs-v1.12.0-2016-08-03: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 88b2dd9d04891f2c30dbc59e5696c27b3c662d2f]: exit status 1
docs-v1.12.0-2016-08-03.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 40ea65a1b5e51b79fdcfa9a918693660fe4115d0]: exit status 1
docs-v1.12.0-2016-08-09: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 8c16b5eb4dd67ea86d5ade2e3a56afdfaa859ad1]: exit status 1
docs-v1.12.0-rc4-2016-07-15: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 80965a35c1c571ff3fcfa1d7423f784aa703728d]: exit status 1
docs-v1.12.1-2016-08-12: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0dc92ee015619640f6457fdd6d97031313bcd24f]: exit status 1
upstream/0.1.1: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout c017c7baa41e6f9ce03c18228e1a950cf5bdba3a]: exit status 1
upstream/0.1.2: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout b400d78b19ee81752680fe0d5d41596bf527b110]: exit status 1
upstream/0.1.3: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout b1acd0a7b0513b31253195fc94e5d8a92b10ebe6]: exit status 1
upstream/0.1.4: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 222c04a7e71a19491559cc81c6541f7474755400]: exit status 1
xdocs-v1.10-09-05-2016: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 2d51863b706537b988785d03d0f983242948e328]: exit status 1
xdocs-v1.10-28-mar-2016: unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
pkg/symlink/testdata/fs/a/d
Please commit your changes or stash them before you switch branches.
Aborting
: command failed: [git checkout 0e63b073ac8f33335a4d4df3f2aa22120e0b7f43]: exit status 1
I add the constraint manually and rerun dep ensure. I know this version exists because I checked the Github releases and dep also suggested it in a previous command I ran.
EDIT Sidenote: I'm thinking a subcommand to find available revisions/versions would be a 'nice to have'. One issue that comes up here, on the Github page the latest stable version for Docker is shown as v17.03.2-ce and dep says it doesn't exist. Also, another library on Github showed as v0.1.0-alpha but in the Gopkg.toml it shows as 0.1.0-alpha.
[[constraint]]
name = "github.com/docker/docker"
version = "v17.05.0-ce"
PS> dep ensure
Solving failure: No versions of github.com/docker/docker met constraints:
v1.13.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.5.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.4.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.4.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.3.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.3.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.3.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.3.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.2.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.1.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.1.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.1.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.0.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.0.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.12.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.11.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.11.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.10.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.9.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.9.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.8.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.8.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.6.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.5.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.5.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.5.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.5.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.8: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.4.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.3.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.3.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.3.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.3.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.3.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.2.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.2.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.2.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.8: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.1.0: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
0.0.3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.05.0-ce-rc3: Could not introduce github.com/docker/[email protected] due to a case-only variation: it depends on "github.com/Sirupsen/logrus", but "github.com/sirupsen/logrus" was already established as the case variant for that project root by depender (root)
v17.05.0-ce-rc2: Could not introduce github.com/docker/[email protected] due to a case-only variation: it depends on "github.com/Sirupsen/logrus", but "github.com/sirupsen/logrus" was already established as the case variant for that project root by depender (root)
v17.05.0-ce-rc1: Could not introduce github.com/docker/[email protected] due to a case-only variation: it depends on "github.com/Sirupsen/logrus", but "github.com/sirupsen/logrus" was already established as the case variant for that project root by depender (root)
v17.05.0-ce: Could not introduce github.com/docker/[email protected] due to a case-only variation: it depends on "github.com/Sirupsen/logrus", but "github.com/sirupsen/logrus" was already established as the case variant for that project root by depender (root)
v17.04.0-ce-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.04.0-ce-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.04.0-ce: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.2-ce-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.2-ce: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.1-ce-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.1-ce: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.0-ce-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v17.03.0-ce: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.1-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.13.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.5-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.4-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.3-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.2-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.2-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.2-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.1-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.12.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.2-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.11.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.3-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.3-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.2-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.10.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.9.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.2-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.8.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.1-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.1-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.1-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.7.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.6.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.5.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.5.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.5.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v1.5.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc7: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc6: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc5: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc4: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc3: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc2: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
v0.7.0-rc1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
master: Could not introduce github.com/docker/docker@master, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
1.12.x: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
1.13.x: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
17.03.x: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
17.04.x: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
17.05.x: Could not introduce github.com/docker/[email protected] due to a case-only variation: it depends on "github.com/Sirupsen/logrus", but "github.com/sirupsen/logrus" was already established as the case variant for that project root by depender (root)
docs: Could not introduce github.com/docker/docker@docs, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
moby: Could not introduce github.com/docker/docker@moby, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
autorun/1: Could not introduce github.com/docker/docker@autorun/1, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
builder/1: Could not introduce github.com/docker/docker@builder/1, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
builder/2: Could not introduce github.com/docker/docker@builder/2, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
debian/0.1.1-1: Could not introduce github.com/docker/docker@debian/0.1.1-1, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.11.2-2016-06-10: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-2016-07-28: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-2016-07-29: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-2016-08-03: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-2016-08-03.1: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-2016-08-09: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.0-rc4-2016-07-15: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
docs-v1.12.1-2016-08-12: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
upstream/0.1.1: Could not introduce github.com/docker/docker@upstream/0.1.1, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
upstream/0.1.2: Could not introduce github.com/docker/docker@upstream/0.1.2, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
upstream/0.1.3: Could not introduce github.com/docker/docker@upstream/0.1.3, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
upstream/0.1.4: Could not introduce github.com/docker/docker@upstream/0.1.4, as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
xdocs-v1.10-09-05-2016: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
xdocs-v1.10-28-mar-2016: Could not introduce github.com/docker/[email protected], as it is not allowed by constraint ^17.5.0-ce from project gitlab.com/michael.golfi/appinsights-driver.
What I ended up doing for it to finally complete without failing:
Gopkg.toml:
[[constraint]]
name = "github.com/docker/docker"
Gopkg.lock:
[[projects]]
name = "github.com/docker/docker"
packages = ["api/types","api/types/backend","api/types/blkiodev","api/types/container","api/types/filters","api/types/mount","api/types/network","api/types/plugins/logdriver","api/types/registry","api/types/strslice","api/types/swarm","api/types/swarm/runtime","api/types/versions","daemon/logger","daemon/logger/jsonfilelog","daemon/logger/jsonfilelog/jsonlog","daemon/logger/loggerutils","daemon/logger/loggerutils/multireader","daemon/logger/templates","pkg/filenotify","pkg/ioutils","pkg/jsonmessage","pkg/longpath","pkg/plugingetter","pkg/plugins","pkg/plugins/transport","pkg/progress","pkg/pubsub","pkg/streamformatter","pkg/stringid","pkg/tailfile","pkg/term","pkg/term/windows"]
revision = "c307e0ce49d63d1b1f479560955dca3956f005ec"
[[projects]]
name = "github.com/docker/go-connections"
packages = ["nat","sockets","tlsconfig"]
revision = "3ede32e2033de7505e6500d6c868c2b9ed9f169d"
version = "v0.3.0"
[[projects]]
branch = "master"
name = "github.com/docker/go-plugins-helpers"
packages = ["sdk"]
revision = "bd8c600f0cdd76c7a57ff6aa86bd2b423868c688"
[[projects]]
name = "github.com/docker/go-units"
packages = ["."]
revision = "0dadbb0345b35ec7ef35e228dabb8de89a65bf52"
version = "v0.3.2"
My project originally used Glide, it had these dependencies. When I switched from Glide to dep the dependencies got imported and worked. I copied these over for dep ensure to complete successfully.
whew, that's quite a pile of output! which is to say, once we finish up some of the ongoing core behavior projects that are now near completion, there'll be bandwidth to start really working on some of the output issues we have.
what's actually distressing in that output, though, is that partway through, git seems to trip over itself. that started happening here:
(19) โ github.com/docker/docker at v0.12.0 has problem subpkg(s):
(19) github.com/docker/docker/api/types/plugins/logdriver is missing; required by (root). github.com/docker/docker/daemon/logger is missing; required by (root). github.com/docker/docker/daemon/logger/jsonfilelog is missing; required by (root). github.com/docker/docker/pkg/ioutils is missing; required by (root).
(18) try github.com/docker/[email protected]
(18) โ unable to update checked out version: error: Your local changes to the following files would be overwritten by checkout:
(18) pkg/symlink/testdata/fs/a/d
(18) Please commit your changes or stash them before you switch branches.
(18) Aborting
(18) : command failed: [git checkout fb99f992c081a1d433c97c99ffb46d12693eeb76]: exit status 1
(18) try github.com/docker/[email protected]
that's the first time i've seen output indicating that git choked on a purely local operation, partway through a run. quite distressing that that's possible ๐ข
but it's also probably why it ultimately failed, rather than finding something workable - it wasn't _really_ trying like 75% of those versions. the good news is the auto-repair logic kicked in and worked on your subsequent runs, but...well, yeah.
if you're able to replicate that mid-dep init docker checkout failure, then we'll have something to investigate here. otherwise, i fear that this might be an ephemeral problem that we can't really do anything about (apart from me giving me a new nightmare, lolsob)
Haha ya sorry for dumping all this logging onto you guys, but I felt like it may help... even though the general and short message here is that docker fails to get imported.
I've run this a couple of times and it looks like it's generally reproducing... Hopefully that will help us all sleep better at night lol.
Hopefully this will help as well. I created a repro branch for you guys.
Also, on a successful run when I run dep ensure and vendor gets created properly with docker imported, I delete the vendor repo and re-run dep ensure and get the following error:
PS > dep ensure
Solving failure: no valid source could be created:
failed to set up sources from the following URLs:
https://github.com/docker/docker
: failed to clean up git repository at C:\Users\migolfi\go\pkg\dep\sources\https---github.com-docker-docker - dirty? corrupted? status output:
M pkg/symlink/testdata/fs/a/d
failed to set up sources from the following URLs:
ssh://[email protected]/docker/docker
: failed to clean up git repository at C:\Users\migolfi\go\pkg\dep\sources\[email protected] - dirty? corrupted? status output:
M pkg/symlink/testdata/fs/a/d
failed to set up sources from the following URLs:
git://github.com/docker/docker
: failed to clean up git repository at C:\Users\migolfi\go\pkg\dep\sources\git---github.com-docker-docker - dirty? corrupted? status output:
M pkg/symlink/testdata/fs/a/d
failed to set up sources from the following URLs:
http://github.com/docker/docker
: failed to clean up git repository at C:\Users\migolfi\go\pkg\dep\sources\http---github.com-docker-docker - dirty? corrupted? status output:
M pkg/symlink/testdata/fs/a/d
I went to delete go/pkg/dep and re-ran dep ensure, it looks like git got suspended and locked the folder go\pkg\dep\sources\git---github.com-docker-docker. Once I killed git and re-ran dep ensure it works correctly again.
@sdboyer - Any news on this?
I'm currently unable to import github.com/docker/docker due to failing dependencies. I also can't seem to force the dependency either, dep ensure tries to cycle through all 198 releases.
Most helpful comment
I'm currently unable to import github.com/docker/docker due to failing dependencies. I also can't seem to force the dependency either, dep ensure tries to cycle through all 198 releases.