SharpSvn: How can I see Update()'s result?

后端 未结 1 944
终归单人心
终归单人心 2020-12-21 05:09

When using a simple command line svn client, if you run update you can see the changes that were made to your working copy.

I\'ve been trying to do so

相关标签:
1条回答
  • 2020-12-21 05:35

    You can subscribe to the Notify event, on SvnUpdateArgs or on the client instance itself:

    SvnUpdateArgs ua = new SvnUpdateArgs();
    ua.Notify += delegate(object sender, SvnNotifyEventArgs e)
            {
                Console.Write(e.Action);
                Console.WriteLine(e.FullPath);
            };
    
    0 讨论(0)
提交回复
热议问题