Bring back descriptive commit message. Fixes #317

This commit is contained in:
Hylke Bons 2011-08-26 21:00:22 +02:00
parent c22fd74a92
commit 78c399157b

View file

@ -128,7 +128,9 @@ namespace SparkleLib {
public override bool SyncUp ()
{
Add ();
Commit ("Changes made by SparkleShare");
string message = FormatCommitMessage ();
Commit (message);
SparkleGit git = new SparkleGit (LocalPath, "push origin master");
git.Start ();