mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
fc00f6c087
In the commit view, add an option in the context menu to have git ignore them by adding the file names to .gitignore file in the root of the workarea.
67 lines
2.0 KiB
Objective-C
67 lines
2.0 KiB
Objective-C
//
|
|
// PBGitRepository.h
|
|
// GitTest
|
|
//
|
|
// Created by Pieter de Bie on 13-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRevList.h"
|
|
#import "PBGitRevSpecifier.h"
|
|
#import "PBGitConfig.h"
|
|
|
|
extern NSString* PBGitRepositoryErrorDomain;
|
|
|
|
@interface PBGitRepository : NSDocument {
|
|
PBGitRevList* revisionList;
|
|
PBGitConfig *config;
|
|
|
|
BOOL hasChanged;
|
|
NSMutableArray *branches;
|
|
PBGitRevSpecifier *currentBranch;
|
|
NSMutableDictionary *refs;
|
|
|
|
PBGitRevSpecifier *_headRef; // Caching
|
|
}
|
|
|
|
- (NSFileHandle*) handleForCommand:(NSString*) cmd;
|
|
- (NSFileHandle*) handleForArguments:(NSArray*) args;
|
|
- (NSFileHandle *) handleInWorkDirForArguments:(NSArray *)args;
|
|
- (NSString*) outputForCommand:(NSString*) cmd;
|
|
- (NSString *)outputForCommand:(NSString *)str retValue:(int *)ret;
|
|
- (NSString *)outputForArguments:(NSArray *)arguments inputString:(NSString *)input retValue:(int *)ret;
|
|
- (NSString*) outputForArguments:(NSArray*) args;
|
|
- (NSString*) outputForArguments:(NSArray*) args retValue:(int *)ret;
|
|
- (NSString *)outputInWorkdirForArguments:(NSArray*) arguments;
|
|
- (NSString *)outputInWorkdirForArguments:(NSArray*) arguments retValue:(int *)ret;
|
|
|
|
- (NSString *)workingDirectory;
|
|
- (NSString *)gitIgnoreFilename;
|
|
|
|
- (BOOL) reloadRefs;
|
|
- (void) addRef:(PBGitRef *)ref fromParameters:(NSArray *)params;
|
|
- (void) lazyReload;
|
|
- (PBGitRevSpecifier*) headRef;
|
|
|
|
- (void) readCurrentBranch;
|
|
- (PBGitRevSpecifier*) addBranch: (PBGitRevSpecifier*) rev;
|
|
|
|
- (NSString*) parseSymbolicReference:(NSString*) ref;
|
|
- (NSString*) parseReference:(NSString*) ref;
|
|
|
|
+ (NSURL*)gitDirForURL:(NSURL*)repositoryURL;
|
|
+ (NSURL*)baseDirForURL:(NSURL*)repositoryURL;
|
|
|
|
- (id) initWithURL: (NSURL*) path;
|
|
- (void) setup;
|
|
|
|
@property (assign) BOOL hasChanged;
|
|
@property (readonly) NSWindowController *windowController;
|
|
@property (readonly) PBGitConfig *config;
|
|
@property (retain) PBGitRevList* revisionList;
|
|
@property (assign) NSMutableArray* branches;
|
|
@property (assign) PBGitRevSpecifier *currentBranch;
|
|
@property (assign) NSMutableDictionary* refs;
|
|
@end
|