Files
gitx/PBRepositoryDocumentController.h
Nathan Kinsinger 17f50e3f7e Add --init and --clone to gitx CLI and Applescript
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.
2010-09-12 19:32:26 -06:00

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