mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
24 lines
443 B
Objective-C
24 lines
443 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>
|
|
#import "GitX_Prefix.pch"
|
|
|
|
#define MIN_GIT_VERSION "1.6.0"
|
|
|
|
// Returns information about the git binary used to execute commands.
|
|
@interface PBGitBinary : NSObject {
|
|
|
|
}
|
|
|
|
+ (NSString *) path;
|
|
+ (NSString *) version;
|
|
+ (NSArray *) searchLocations;
|
|
+ (NSString *) notFoundError;
|
|
@end
|