From 57a6d8dbf0f89d5a54950e4157f46922454a0256 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 26 Aug 2011 21:00:22 +0200 Subject: [PATCH] Bring back descriptive commit message. Fixes #317 --- SparkleLib/Git/SparkleRepoGit.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index de220e48..62bd89f7 100644 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -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 ();