Issue #67: glide get was registering the repo as the go-get redirect url improperly

The repo property needs to be a real repo rather than a redirect. glide get does
not need to specify the repo and type. If it can be automatically detected by
glide get it can be automatically detected elsewhere.
diff --git a/cmd/get_imports.go b/cmd/get_imports.go
index 768d01a..561d173 100644
--- a/cmd/get_imports.go
+++ b/cmd/get_imports.go
@@ -70,11 +70,7 @@
 	}
 
 	dep := &Dependency{
-		Name:    root,
-		VcsType: string(repo.Vcs()),
-
-		// Should this assume a remote https root at all times?
-		Repository: repoURL,
+		Name: root,
 	}
 	subpkg := strings.TrimPrefix(name, root)
 	if len(subpkg) > 0 && subpkg != "/" {