Take the 2008 Git User's Survey and help out! [ hide ]

public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/benstiglitz/gitnub.git
Search Repo:
dustin (author)
Wed Mar 12 16:09:26 -0700 2008
commit  dbe195471fd7fe6441325d1ebcb6a64b51878828
tree    62ba1c9f84b8b19bd21a84c0288e14745a496182
parent  41487b0d312fba88728433a2c4ebd44457c05e74
gitnub / nub / nub.m
100644 15 lines (11 sloc) 0.428 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import <Foundation/Foundation.h>
 
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    
    // NSArray *myArgs = [[NSProcessInfo processInfo] arguments];
    // NSLog(@"%@", myArgs);
    
    NSTask *task = [[NSTask alloc] init];
    [task setLaunchPath:@"/Applications/GitNub.app/Contents/MacOS/GitNub"];
    [task launch];
    
    [pool drain];
    return 0;
}