├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── index.html ├── new-dir └── cool.js ├── test-folder 2 ├── .gitmodules ├── LICENSE ├── README.md ├── fs.js ├── test.css └── test.js └── test.txt /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | change 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/index.html -------------------------------------------------------------------------------- /new-dir/cool.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-folder 2/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/test-folder 2/.gitmodules -------------------------------------------------------------------------------- /test-folder 2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/test-folder 2/LICENSE -------------------------------------------------------------------------------- /test-folder 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/test-folder 2/README.md -------------------------------------------------------------------------------- /test-folder 2/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/test-folder 2/fs.js -------------------------------------------------------------------------------- /test-folder 2/test.css: -------------------------------------------------------------------------------- 1 | .nice { 2 | border: solid 1px green; 3 | } 4 | 5 | cool -------------------------------------------------------------------------------- /test-folder 2/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spck-io/Test-Repo/HEAD/test-folder 2/test.js -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------