How do I view all ignored patterns set with svn:ignore recursively in an SVN repository?

前端 未结 2 814
忘掉有多难
忘掉有多难 2021-01-30 02:32

I see it is possible to view a list of properties set on every directory within an SVN repository using proplist and the -R flag (recursive) and -v flag (verbose):



        
2条回答
  •  情深已故
    2021-01-30 02:47

    Sorry to jump in here late, but there is a simple solution here.

    Just grep.

    svn proplist -Rv | grep svn:ignore -B1 -A1
    

    Show one line before, and one line after the match.

提交回复
热议问题