diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -199,6 +199,13 @@ group.add_option('--dissociate', | |||
199 | group.add_option('--depth', type='int', default=None, | 199 | group.add_option('--depth', type='int', default=None, |
200 | dest='depth', | 200 | dest='depth', |
201 | help='create a shallow clone with given depth; see git clone') | 201 | help='create a shallow clone with given depth; see git clone') |
202 | group.add_option('--partial-clone', action='store_true', | ||
203 | dest='partial_clone', | ||
204 | help='perform partial clone (https://git-scm.com/' | ||
205 | 'docs/gitrepository-layout#_code_partialclone_code)') | ||
206 | group.add_option('--clone-filter', action='store', default='blob:none', | ||
207 | dest='clone_filter', | ||
208 | help='filter for use with --partial-clone [default: %default]') | ||
202 | group.add_option('--archive', | 209 | group.add_option('--archive', |
203 | dest='archive', action='store_true', | 210 | dest='archive', action='store_true', |
204 | help='checkout an archive instead of a git repository for ' | 211 | help='checkout an archive instead of a git repository for ' |