From 3264b6b880edd0481882212fb4204f53f55632b9 Mon Sep 17 00:00:00 2001 From: Alex Hudson Date: Mon, 2 Aug 2010 14:21:08 +0100 Subject: [PATCH] Revert "Give git the local working directory before looking for information." This reverts commit 77123874a3249f0df94e312c509d336598e74133. --- SparkleShare/SparkleRepo.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/SparkleShare/SparkleRepo.cs b/SparkleShare/SparkleRepo.cs index 0c38c3c9..a9c87391 100644 --- a/SparkleShare/SparkleRepo.cs +++ b/SparkleShare/SparkleRepo.cs @@ -71,7 +71,6 @@ namespace SparkleShare { LocalPath = path; Name = Path.GetFileName (LocalPath); - System.Console.WriteLine("New repo in {0}", LocalPath); Process = new Process () { EnableRaisingEvents = true @@ -471,7 +470,6 @@ namespace SparkleShare { process.StartInfo.RedirectStandardOutput = true; process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "git"; - process.StartInfo.WorkingDirectory = LocalPath; process.StartInfo.Arguments = "rev-list --max-count=1 HEAD"; process.Start (); @@ -492,7 +490,6 @@ namespace SparkleShare { process.StartInfo.RedirectStandardOutput = true; process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "git"; - process.StartInfo.WorkingDirectory = LocalPath; process.StartInfo.Arguments = "config --get user.name"; process.Start (); @@ -524,7 +521,6 @@ namespace SparkleShare { process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.FileName = "git"; - process.StartInfo.WorkingDirectory = LocalPath; process.StartInfo.Arguments = "config --get user.email"; process.Start (); user_email = process.StandardOutput.ReadToEnd ().Trim (); @@ -544,7 +540,6 @@ namespace SparkleShare { process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.FileName = "git"; - process.StartInfo.WorkingDirectory = LocalPath; process.StartInfo.Arguments = "config --get remote.origin.url"; process.Start ();