mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
e8131c3898
This allows you to do something like gitx --diff to display a diff similar to 'git diff', but with GitX prettification. It accepts all git diff parameters, so you can do something like gitx --diff HEAD~10 to show the diff compared to the last 10 commits. Or, you can something like git diff | gitx to pipe anything that produces a diff to GitX
19 lines
375 B
Objective-C
19 lines
375 B
Objective-C
//
|
|
// PBWebDiffController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 13-10-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBWebController.h"
|
|
#import "PBDiffWindowController.h"
|
|
|
|
@interface PBWebDiffController : PBWebController {
|
|
IBOutlet PBDiffWindowController *diffController;
|
|
}
|
|
|
|
- (void) showDiff:(NSString *)diff;
|
|
@end
|