Пример #1
0
        private static void Repack()
        {
            var git = new GitRepo(m_log, m_config.GitDir);

            git.Repack();
        }
Пример #2
0
		private static void Repack()
		{
			var git = new GitRepo(m_log, m_config.GitDir);
			git.Repack();
		}
Пример #3
0
		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();
			}
		}