How do I make svn ignore unversion files only in my working copy?

前端 未结 3 1672
青春惊慌失措
青春惊慌失措 2021-02-19 07:23

duplicate: Ignore SVN ignore... possible?


Suppose my working copy is littered with unversioned files that I don\'t want to delete. I want svn to ignore these files

3条回答
  •  悲&欢浪女
    2021-02-19 07:53

    In your private subversion config file for the repository, set the global-ignores flag, like this:

    [miscellany]
    global-ignores = *.class *.o
    

提交回复
热议问题