diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib
index cf17779..8f619b8 100644
--- a/English.lproj/MainMenu.xib
+++ b/English.lproj/MainMenu.xib
@@ -657,7 +657,7 @@
-
@@ -2157,6 +2179,7 @@
938.IBPluginDependency
942.IBPluginDependency
943.IBPluginDependency
+ 945.IBPluginDependency
- 944
+ 946
diff --git a/PBGitWindowController.h b/PBGitWindowController.h
index d40d436..d8815a0 100644
--- a/PBGitWindowController.h
+++ b/PBGitWindowController.h
@@ -35,5 +35,6 @@
- (IBAction) showCommitView:(id)sender;
- (IBAction) showHistoryView:(id)sender;
+- (IBAction) revealInFinder:(id)sender;
- (IBAction) openInTerminal:(id)sender;
@end
diff --git a/PBGitWindowController.m b/PBGitWindowController.m
index 0d7b8ee..4bfd0f7 100644
--- a/PBGitWindowController.m
+++ b/PBGitWindowController.m
@@ -150,6 +150,11 @@
[self showErrorSheet:error];
}
+- (IBAction) revealInFinder:(id)sender
+{
+ [[NSWorkspace sharedWorkspace] openFile:[repository workingDirectory]];
+}
+
- (IBAction) openInTerminal:(id)sender
{
TerminalApplication *term = [SBApplication applicationWithBundleIdentifier: @"com.apple.Terminal"];