本文介绍了使用svn命令的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨我在后面的代码中使用svn命令时遇到问题:



Hi i have a problem using svn command in code behind :

public void SvnDiff(int rev1, int rev2)
        {
            try
            {
                var p = new Process();
                p.StartInfo.UseShellExecute = false;
                p.StartInfo.RedirectStandardOutput = true;
                p.StartInfo.FileName = "svn";
                string arg = string.Format("diff -r {0}:{1} --summarize --xml > SvnDiff.xml", rev1, rev2);
                Console.WriteLine(arg);
                p.StartInfo.Arguments = arg;
                p.Start();
                p.WaitForExit();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
        }





当我在cmd中使用此命令时,它工作正常。

svn diff -r 2882:2888 --summarize --xml> SvnDiff.xml



但是当我运行我的方法时我收到了这条消息:

svn:E020024:错误解决' '>''



我现在可以做些什么来解决这个问题?

感谢任何建议



When i use this command in cmd, it''s working fine.
svn diff -r 2882:2888 --summarize --xml > SvnDiff.xml

but when i run my method i got this message:
svn: E020024: Error resolving case of ''>''

What can i do right now to solve this ?
Thanks for any advice

推荐答案


这篇关于使用svn命令的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 13:01