private static void Repack() { var git = new GitRepo(m_log, m_config.GitDir); git.Repack(); }
private Stream OpenOutput() { m_brokenPipe = false; if (m_config.GitDir == null) { return new FileStream("import.dat", FileMode.Create, FileAccess.Write); } else { m_git = new GitRepo(m_log, m_config.GitDir); m_git.Init(m_config.GitConfig); return m_git.StartImport(); } }