使用sharpsvn。 具体的修订logmessage想要改变。
它的实现类似于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> ());
}
答案 0 :(得分:2)
Subversion中的每条日志消息都存储为修订版属性,即与每个修订版一起使用的元数据。请参阅complete list of subversion properties。另请查看this related answer和Subversion FAQ。相关的答案显示你想要做的是:
svn propedit -r 277 --revprop svn:log "new log message" <path or url>
在标准存储库上,这会导致错误,因为默认行为是无法修改修订版属性。有关如何使用pre-revprop-change
存储库挂钩更改日志消息,请参阅FAQ entry。
转换为SharpSvn:
public void ChangeLogMessage(Uri repositoryRoot, long revision, string newMessage)
{
using (SvnClient client = new SvnClient())
{
SvnSetRevisionPropertyArgs sa = new SvnSetRevisionPropertyArgs();
// Here we prevent an exception from being thrown when the
// repository doesn't have support for changing log messages
sa.AddExpectedError(SvnErrorCode.SVN_ERR_REPOS_DISABLED_FEATURE);
client.SetRevisionProperty(repositoryRoot,
revision,
SvnPropertyNames.SvnLog,
newMessage,
sa);
if (sa.LastException != null &&
sa.LastException.SvnErrorCode ==
SvnErrorCode.SVN_ERR_REPOS_DISABLED_FEATURE)
{
MessageBox.Show(
sa.LastException.Message,
"",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
}
}
}
答案 1 :(得分:0)
据我所知,SharpSvn(以及一般的SVN客户端)主要提供只读访问权限,不允许您编辑存储库中的日志消息。但是,如果您具有管理员权限并且需要编辑日志消息,则可以do it yourself。