├── .gitignore ├── Makefile ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── master │ ├── README.md │ ├── bar │ │ └── README.md │ └── foo │ │ └── README.md └── my-branch │ ├── README.md │ ├── bar │ └── README.md │ ├── branch-only-file.md │ └── foo │ └── README.md └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/test/fixtures/master/README.md -------------------------------------------------------------------------------- /test/fixtures/master/bar/README.md: -------------------------------------------------------------------------------- 1 | hi there 2 | -------------------------------------------------------------------------------- /test/fixtures/master/foo/README.md: -------------------------------------------------------------------------------- 1 | hello again 2 | -------------------------------------------------------------------------------- /test/fixtures/my-branch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/test/fixtures/my-branch/README.md -------------------------------------------------------------------------------- /test/fixtures/my-branch/bar/README.md: -------------------------------------------------------------------------------- 1 | hi there 2 | -------------------------------------------------------------------------------- /test/fixtures/my-branch/branch-only-file.md: -------------------------------------------------------------------------------- 1 | I only exist in the branch! -------------------------------------------------------------------------------- /test/fixtures/my-branch/foo/README.md: -------------------------------------------------------------------------------- 1 | hello again 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sallen450/download-git-repo/HEAD/test/index.js --------------------------------------------------------------------------------