gitextract_bnqaxfk6/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── action/ │ ├── about.go │ ├── about_test.go │ ├── cache.go │ ├── config_wizard.go │ ├── create.go │ ├── debug.go │ ├── doc.go │ ├── ensure.go │ ├── get.go │ ├── get_test.go │ ├── import_gb.go │ ├── import_godep.go │ ├── import_gom.go │ ├── import_gpm.go │ ├── init.go │ ├── install.go │ ├── list.go │ ├── list_test.go │ ├── mirrors.go │ ├── name.go │ ├── name_test.go │ ├── no_vendor.go │ ├── no_vendor_test.go │ ├── plugin.go │ ├── plugin_test.go │ ├── project_info.go │ ├── rebuild.go │ ├── rebuild_test.go │ ├── remove.go │ ├── tree.go │ └── update.go ├── appveyor.yml ├── cache/ │ ├── cache.go │ ├── cache_test.go │ ├── global_lock.go │ └── memory.go ├── cfg/ │ ├── cfg.go │ ├── config.go │ ├── config_test.go │ ├── lock.go │ └── lock_test.go ├── dependency/ │ ├── resolver.go │ ├── resolver_test.go │ └── scan.go ├── docs/ │ ├── commands.md │ ├── example-glide.yaml │ ├── faq.md │ ├── getting-started.md │ ├── glide-plugin-example │ ├── glide.lock.md │ ├── glide.yaml.md │ ├── importing.md │ ├── index.md │ ├── plugins.md │ ├── resolving-imports.md │ ├── vendor.md │ └── versions.md ├── gb/ │ ├── gb.go │ └── manifest.go ├── glide.go ├── glide.yaml ├── glide_test.go ├── godep/ │ ├── godep.go │ └── strip/ │ ├── strip.go │ └── strip_test.go ├── gom/ │ ├── gom.go │ └── parser.go ├── gpm/ │ └── gpm.go ├── importer/ │ └── importer.go ├── mirrors/ │ ├── cfg.go │ ├── mirrors.go │ └── mirrors_test.go ├── mkdocs.yml ├── msg/ │ ├── msg.go │ ├── out.go │ └── out_windows.go ├── path/ │ ├── path.go │ ├── path_test.go │ ├── strip.go │ ├── strip_int_test.go │ ├── strip_test.go │ └── winbug.go ├── repo/ │ ├── installer.go │ ├── repo.go │ ├── semver.go │ ├── set_reference.go │ ├── tracker.go │ ├── tracker_test.go │ └── vcs.go ├── testdata/ │ ├── name/ │ │ ├── glide.yaml │ │ └── glide2.yaml │ ├── nv/ │ │ ├── a/ │ │ │ └── foo.empty │ │ ├── b/ │ │ │ └── foo.empty │ │ └── c/ │ │ └── foo.empty │ ├── path/ │ │ ├── a/ │ │ │ ├── b/ │ │ │ │ └── c/ │ │ │ │ └── placeholder.empty │ │ │ └── glide.yaml │ │ └── x/ │ │ ├── glide.yaml │ │ ├── symlinked_vendor/ │ │ │ └── placeholder.empty │ │ └── y/ │ │ └── z/ │ │ └── placeholder.empty │ ├── plugin/ │ │ ├── glide-hello │ │ └── glide-hello-win.bat │ └── rebuild/ │ └── glide.yaml ├── tree/ │ ├── tree.go │ └── tree_test.go ├── util/ │ ├── normalizename_test.go │ ├── util.go │ └── util_test.go └── vendor/ ├── github.com/ │ ├── Masterminds/ │ │ ├── semver/ │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── benchmark_test.go │ │ │ ├── collection.go │ │ │ ├── collection_test.go │ │ │ ├── constraints.go │ │ │ ├── constraints_test.go │ │ │ ├── doc.go │ │ │ ├── version.go │ │ │ └── version_test.go │ │ └── vcs/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bzr.go │ │ ├── bzr_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── glide.yaml │ │ ├── hg.go │ │ ├── hg_test.go │ │ ├── repo.go │ │ ├── repo_test.go │ │ ├── svn.go │ │ ├── svn_test.go │ │ ├── vcs_local_lookup.go │ │ ├── vcs_remote_lookup.go │ │ └── vcs_remote_lookup_test.go │ ├── codegangsta/ │ │ └── cli/ │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── altsrc/ │ │ │ ├── altsrc.go │ │ │ ├── flag.go │ │ │ ├── flag_generated.go │ │ │ ├── flag_test.go │ │ │ ├── helpers_test.go │ │ │ ├── input_source_context.go │ │ │ ├── map_input_source.go │ │ │ ├── toml_command_test.go │ │ │ ├── toml_file_loader.go │ │ │ ├── yaml_command_test.go │ │ │ └── yaml_file_loader.go │ │ ├── app.go │ │ ├── app_test.go │ │ ├── appveyor.yml │ │ ├── autocomplete/ │ │ │ ├── bash_autocomplete │ │ │ └── zsh_autocomplete │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── command_test.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── flag-types.json │ │ ├── flag.go │ │ ├── flag_generated.go │ │ ├── flag_test.go │ │ ├── funcs.go │ │ ├── generate-flag-types │ │ ├── help.go │ │ ├── help_test.go │ │ ├── helpers_test.go │ │ ├── helpers_unix_test.go │ │ ├── helpers_windows_test.go │ │ └── runtests │ └── mitchellh/ │ └── go-homedir/ │ ├── LICENSE │ ├── README.md │ ├── homedir.go │ └── homedir_test.go └── gopkg.in/ └── yaml.v2/ ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── README.md ├── apic.go ├── decode.go ├── decode_test.go ├── emitterc.go ├── encode.go ├── encode_test.go ├── example_embedded_test.go ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── suite_test.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go