使用sharpsvn。 特定修訂記錄消息要更改。sharpsvn logmessage編輯sharpsvn?
它的實現就像svn的[show log] - [edit logmessage]一樣。
我的英語很尷尬。 等等,以幫助你理解。 我的代碼已附加。
public void logEdit()
{
Collection<SvnLogEventArgs> logitems = new Collection<SvnLogEventArgs>();
SvnRevisionRange range = new SvnRevisionRange(277, 277);
SvnLogArgs arg = new SvnLogArgs(range) ;
m_svn.GetLog(new System.Uri(m_targetPath), arg, out logitems);
SvnLogEventArgs logs;
foreach (var logentry in logitems)
{
string autor = logentry.LogMessage; // only read ..
// autor += "AA";
}
// m_svn.Log(new System.Uri(m_targetPath), new System.EventHandler<SvnLogEventArgs>());
}
並不清楚您要問什麼? – 2013-04-30 05:14:20
sharpsvn通過使用c#svn的'[edit logmessage]'來完成這個任務。 來自c#使用sharpsvn,像'[編輯logmessage]'svn想使它的工作。 – user2334401 2013-04-30 05:25:41