repo.or.cz
/
TortoiseGit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Do not quit TortoiseGitProc after running Bisect Start from log list
[TortoiseGit.git]
/
src
/
TortoiseProc
/
Commands
/
RefBrowseCommand.h
blob
c297255b0cb1ab87511f0ef868d3b2c52af3b7d2
1
#pragma once
2
#include
"Command.h"
3
#include
"BrowseRefsDlg.h"
4
5
class
RefBrowseCommand
:
public
Command
6
{
7
virtual
bool
Execute
()
8
{
9
CBrowseRefsDlg
(
orgCmdLinePath
.
GetWinPath
()).
DoModal
();
10
return true
;
11
}
12
};
13