Bring back descriptive commit message. Fixes #317

This commit is contained in:
Hylke Bons 2011-08-26 21:00:22 +02:00
parent 1ed93ed1a1
commit 57a6d8dbf0

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 ();