Give git the local working directory before looking for information.

This commit is contained in:
Alex Hudson 2010-08-02 13:25:35 +01:00
parent 2bc0ed5e75
commit 77123874a3

View file

@ -71,6 +71,7 @@ namespace SparkleShare {
LocalPath = path;
Name = Path.GetFileName (LocalPath);
System.Console.WriteLine("New repo in {0}", LocalPath);
Process = new Process () {
EnableRaisingEvents = true
@ -470,6 +471,7 @@ 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 ();
@ -490,6 +492,7 @@ 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 ();
@ -521,6 +524,7 @@ 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 ();
@ -540,6 +544,7 @@ 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 ();