Temporarily ignore subversion ignore settings

后端 未结 1 1111
梦毁少年i
梦毁少年i 2021-01-14 19:11

I have a bunch of files that I normally want to ignore so I have the file extensions listed in my global ignore as well as on the folder properties ignore list. However, I h

相关标签:
1条回答
  • 2021-01-14 19:44

    Why don't you use the --no-ignore flag while doing svn add ?

    --no-ignore : disregard default and svn:ignore property ignores

    Try doing something like:

     svn add --force --no-ignore .
    

    Note that you have to careful about what files get added.

    0 讨论(0)
提交回复
热议问题