From d49146f9dad88351aa65609d46323fc5afb3f460 Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Thu, 3 Jul 2014 22:33:22 +0800 Subject: [PATCH] Clone depth should be at least 1 Signed-off-by: Sup Yut Sum --- src/TortoiseProc/CloneDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TortoiseProc/CloneDlg.cpp b/src/TortoiseProc/CloneDlg.cpp index 503d3427d..002c400e7 100644 --- a/src/TortoiseProc/CloneDlg.cpp +++ b/src/TortoiseProc/CloneDlg.cpp @@ -56,7 +56,7 @@ CCloneDlg::CCloneDlg(CWnd* pParent /*=NULL*/) m_regCloneDir = CRegString(_T("Software\\TortoiseGit\\TortoiseProc\\CloneDir")); m_nSVNFrom = 0; - m_nDepth = 0; + m_nDepth = 1; m_bDepth = false; m_bSaving = false; } -- 2.11.4.GIT