File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public final class Git: Shell {
38
38
/// - parameter revision the name of the revision to parse. can be symbolic (`@`), human-readable (`origin/HEAD`) or a commit SHA hash
39
39
case revParse( abbrevRef: Bool , revision: String )
40
40
41
- case revList( branch : String , count: Bool = false , revisions: String ? = nil )
41
+ case revList( count: Bool = false , revisions: String ? = nil )
42
42
case raw( String )
43
43
case lsRemote( url: String , limitToHeads: Bool = false )
44
44
@@ -153,7 +153,7 @@ public final class Git: Shell {
153
153
params = [ Command . config. rawValue, " --add " , name, value]
154
154
case . readConfig( let name) :
155
155
params = [ Command . config. rawValue, " --get " , name]
156
- case . revList( _ , let count, let revisions) :
156
+ case . revList( let count, let revisions) :
157
157
params = [ Command . revList. rawValue]
158
158
if count {
159
159
params. append ( " --count " )
You can’t perform that action at this time.
0 commit comments