mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
3861deecfa
Git 1.6.0 was released over a year ago now, so it shouldn't be too hard
to get people to upgrade to that. We need 1.6.0 for the --children revlist
option.
Requiring Git 1.6.0 or higher means we can also revert
a94981f35 (RevList: Don't rely on the presence of %x00) sometime.
22 lines
347 B
Objective-C
22 lines
347 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>
|
|
|
|
#define MIN_GIT_VERSION "1.6.0"
|
|
|
|
@interface PBGitBinary : NSObject {
|
|
|
|
}
|
|
|
|
+ (NSString *) path;
|
|
+ (NSString *) version;
|
|
+ (NSArray *) searchLocations;
|
|
+ (NSString *) notFoundError;
|
|
@end
|