Remove unused method

This commit is contained in:
Simon Pither 2010-06-16 15:33:57 +01:00
parent fe1e9e6bf7
commit dfd6714669

View file

@ -160,19 +160,6 @@ namespace SparkleShare {
} }
} }
// Clones a remote repo
public void Clone ()
{
Process.StartInfo.Arguments = "clone " + RemoteOriginUrl;
Process.Start ();
// Add a gitignore file
TextWriter Writer = new StreamWriter (LocalPath + ".gitignore");
Writer.WriteLine ("*~"); // Ignore gedit swap files
Writer.WriteLine (".*.sw?"); // Ignore vi swap files
Writer.Close ();
}
// When there are changes we generally want to Add, Commit and Push // When there are changes we generally want to Add, Commit and Push
// so this method does them all with appropriate timers, etc switched off // so this method does them all with appropriate timers, etc switched off
public void AddCommitAndPush () public void AddCommitAndPush ()