mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
3ba009dcde
This makes sure that any git binary found will actually be version 1.5.4 or higher.
21 lines
315 B
Objective-C
21 lines
315 B
Objective-C
//
|
|
// PBGitBinary.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 04-10-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGitBinary : NSObject {
|
|
|
|
}
|
|
|
|
+ (NSString *) path;
|
|
+ (NSString *) version;
|
|
+ (NSArray *) searchLocations;
|
|
+ (NSString *) notFoundError;
|
|
@end
|