summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
Diffstat (limited to 'repo')
-rwxr-xr-xrepo7
1 files changed, 7 insertions, 0 deletions
diff --git a/repo b/repo
index 8ed147df..649c4e48 100755
--- a/repo
+++ b/repo
@@ -199,6 +199,13 @@ group.add_option('--dissociate',
199group.add_option('--depth', type='int', default=None, 199group.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')
202group.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)')
206group.add_option('--clone-filter', action='store', default='blob:none',
207 dest='clone_filter',
208 help='filter for use with --partial-clone [default: %default]')
202group.add_option('--archive', 209group.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 '