mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
24 lines
424 B
Objective-C
24 lines
424 B
Objective-C
//
|
|
// PBGitConfig.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 14-10-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitBinary.h"
|
|
#import "PBEasyPipe.h"
|
|
|
|
@interface PBGitConfig : NSObject {
|
|
NSString *repositoryPath;
|
|
}
|
|
|
|
- init;
|
|
- initWithRepositoryPath:(NSString *)path;
|
|
|
|
// get config data: `git config -l`
|
|
- (NSDictionary*) listConfigValuesInDir:(NSString*)inDir;
|
|
|
|
@end
|