0
在嘗試提交SharpSVN中的某些內容時,您使用本地路徑嗎?我不理解這個庫如何與在線Subversion版本庫一起工作。很困惑。任何幫助都會很棒。聽到的是我如何嘗試提交...SharpSVN中的本地目錄參數提交
using (SvnClient client = new SvnClient())
{
SvnCommitArgs args = new SvnCommitArgs();
args.LogMessage = message;
args.ThrowOnError = true;
args.ThrowOnCancel = true;
try
{
return client.Commit(path, args);
}
catch (Exception e)
{
if (e.InnerException != null)
{
throw new Exception(e.InnerException.Message, e);
}
throw e;
}
}