In mercurial land you're talking about three different types of partial clones:
- shallow clones: I want from revision point X onward not possible
- partial clones by filepath: I want all revision history in directory /path not possible
- partial clones by branch: I want all revision history on brancch Y: use clone -r
If you know how people will want to break things down by filepath (multiple projects in the same repo (shame on you)) you can use subrepositories (sort of like svn externals) tto pre-split the repo into separately cloneable portions
Also, as to the "so huge I'd like to only get a part of it": You really only have to do that one time ever. Just clone it while you have lunch, and then you have it forever more. Subsequently you can pull
and get deltas efficiently going forward. And if you want another clone of it, just clone your first clone. Where you got a clone doesn't matter (and local clones take up no additional diskspace since they're hard links under the covers).