Newbie at git, but I've been trying to figure this out for an hour. How do I clone a specific release from github?
I want these files: https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release/3.1.1 but that URL does not work with clone, so I can't figure out how to get them.
I can clone this parent URL: https://github.com/angular-ui/ui-grid.info.git but that does not seem to have the files I want.
So how can I get that specific 3.1.1 release?
UPDATE: Issue solved. My question assumed that git allows you to clone a specific directory in the repo (and not have to also clone all the other directories you don't care about). I now realize git just doesn't support that; you apparently have to clone the entire repo and then just cd into the directory you want.