Hello! I want to commit the changes of a working copy in my computer to the repository. The repository is in an URL and i´m doing this now:
using (SvnClient client = new SvnClient())
{
    SvnCommitArgs ca = new SvnCommitArgs();
    ca.ChangeLists.Add(workingcopydir + filename);
    ca.LogMessage = "Change";
    client.Add(workingcopydir + filename);
    try
    {
        client.Commit(workingcopydir, ca);
        //, ca, out resultado
    }
    catch (Exception exc)
    {
        MessageBox.Show(this, exc.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
}
But it doesn´t work, when it finish the file is added but not commited. Why? Thanks!!! :)