mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
25 lines
340 B
Objective-C
25 lines
340 B
Objective-C
//
|
|
// PBGitHistoryView.h
|
|
// GitX
|
|
//
|
|
// Created by David Catmull on 20-06-11.
|
|
// Copyright 2011. All rights reserved.
|
|
//
|
|
|
|
#import "PBGitStashController.h"
|
|
|
|
@implementation PBGitStashController
|
|
|
|
|
|
- (void) awakeFromNib
|
|
{
|
|
}
|
|
|
|
- (void) showStash:(PBGitStash)stash
|
|
{
|
|
// git stash show -p [stash stashSourceMessage]
|
|
[webController
|
|
}
|
|
|
|
@end
|