Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 15, 2020 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/6e48edf5ab97976156489ea5d612272e to your computer and use it in GitHub Desktop.
Save r-ryantm/6e48edf5ab97976156489ea5d612272e to your computer and use it in GitHub Desktop.
/nix/store/d0yvdw71r41qs7bwywnrcx6fbxvzxz9a-vcstool-0.2.14
├── bin
│   ├── vcs
│   ├── vcs-branch
│   ├── vcs-bzr
│   ├── vcs-custom
│   ├── vcs-diff
│   ├── vcs-export
│   ├── vcs-git
│   ├── vcs-help
│   ├── vcs-hg
│   ├── vcs-import
│   ├── vcs-log
│   ├── vcs-pull
│   ├── vcs-push
│   ├── vcs-remotes
│   ├── vcs-status
│   ├── vcs-svn
│   └── vcs-validate
├── lib
│   └── python3.8
│   └── site-packages
│   ├── vcstool
│   │   ├── clients
│   │   │   ├── bzr.py
│   │   │   ├── git.py
│   │   │   ├── hg.py
│   │   │   ├── __init__.py
│   │   │   ├── none.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bzr.cpython-38.pyc
│   │   │   │   ├── git.cpython-38.pyc
│   │   │   │   ├── hg.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── none.cpython-38.pyc
│   │   │   │   ├── svn.cpython-38.pyc
│   │   │   │   ├── tar.cpython-38.pyc
│   │   │   │   ├── vcs_base.cpython-38.pyc
│   │   │   │   └── zip.cpython-38.pyc
│   │   │   ├── svn.py
│   │   │   ├── tar.py
│   │   │   ├── vcs_base.py
│   │   │   └── zip.py
│   │   ├── commands
│   │   │   ├── branch.py
│   │   │   ├── command.py
│   │   │   ├── custom.py
│   │   │   ├── diff.py
│   │   │   ├── export.py
│   │   │   ├── help.py
│   │   │   ├── import_.py
│   │   │   ├── __init__.py
│   │   │   ├── log.py
│   │   │   ├── pull.py
│   │   │   ├── push.py
│   │   │   ├── __pycache__
│   │   │   │   ├── branch.cpython-38.pyc
│   │   │   │   ├── command.cpython-38.pyc
│   │   │   │   ├── custom.cpython-38.pyc
│   │   │   │   ├── diff.cpython-38.pyc
│   │   │   │   ├── export.cpython-38.pyc
│   │   │   │   ├── help.cpython-38.pyc
│   │   │   │   ├── import_.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── log.cpython-38.pyc
│   │   │   │   ├── pull.cpython-38.pyc
│   │   │   │   ├── push.cpython-38.pyc
│   │   │   │   ├── remotes.cpython-38.pyc
│   │   │   │   ├── status.cpython-38.pyc
│   │   │   │   ├── validate.cpython-38.pyc
│   │   │   │   └── vcs.cpython-38.pyc
│   │   │   ├── remotes.py
│   │   │   ├── status.py
│   │   │   ├── validate.py
│   │   │   └── vcs.py
│   │   ├── compat
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── shutil.cpython-38.pyc
│   │   │   └── shutil.py
│   │   ├── crawler.py
│   │   ├── executor.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── crawler.cpython-38.pyc
│   │   │   ├── executor.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── streams.cpython-38.pyc
│   │   │   └── util.cpython-38.pyc
│   │   ├── streams.py
│   │   └── util.py
│   └── vcstool-0.2.14.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
└── vcstool-completion
├── vcs.bash
├── vcs.tcsh
└── vcs.zsh
16 directories, 90 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment