You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -131,12 +150,8 @@ typedef void (^GTRepositoryStatusBlock)(NSURL *fileURL, GTRepositoryFileStatus s
131
150
// originURL - The URL to clone from.
132
151
// workdirURL - A URL to the desired working directory on the local machine.
133
152
// withCheckout - if NO, don't checkout the remote HEAD
134
-
// options - A NSDictionary with NSString keys, used for specifying clone options. Possible keys are:
135
-
// - @"bare" - BOOL value, if YES, create a bare clone, for example: [NSNumber numberWithBool:YES], defaults to NO
136
-
// - @"checkout" - BOOL value, if NO, don't checkout the remote HEAD, for example: [NSNumber numberWithBool:NO], defaults to YES
137
-
// - @"transportFlags" - int value, two possible values:
138
-
// - GIT_TRANSPORTFLAGS_NONE (0), for example: [NSNumber numberWithInt:GIT_TRANSPORTFLAGS_NONE], this is the default value
139
-
// - GIT_TRANSPORTFLAGS_NO_CHECK_CERT (1), for example: [NSNumber numberWithInt:GIT_TRANSPORTFLAGS_NO_CHECK_CERT], if you pass this flag and the connection is secured with SSL/TLS, the authenticity of the server certificate will not be verified
153
+
// options - A dictionary containing any of the above options key constants, or
154
+
// nil to use the defaults.
140
155
// error - A pointer to fill in case of trouble.
141
156
// transferProgressBlock - This block is called with network transfer updates.
142
157
// checkoutProgressBlock - This block is called with checkout updates (if withCheckout is YES).
0 commit comments