mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
17f50e3f7e
Allows creating repositories from the command line, Applescript, or the scripting bridge. These are basic commands, if you need to use commandline options then use git itself.
21 lines
377 B
Objective-C
21 lines
377 B
Objective-C
//
|
|
// PBRepositoryDocumentController.h
|
|
// GitX
|
|
//
|
|
// Created by Ciarán Walsh on 15/08/2008.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRevSpecifier.h"
|
|
|
|
|
|
@interface PBRepositoryDocumentController : NSDocumentController
|
|
{
|
|
|
|
}
|
|
|
|
- (id) documentForLocation:(NSURL*) url;
|
|
- (void)initNewRepositoryAtURL:(NSURL *)url;
|
|
@end
|