TortoiseSVN: How to ignore bin contents from commit

前端 未结 4 1217
滥情空心
滥情空心 2021-02-04 05:52

I use TortoiseSVN 1.7.9.

How can I ignore / remove contents from /bin folder when I svn commit the project folder? I don\'t w

4条回答
  •  离开以前
    2021-02-04 06:49

    To ignore bin, obj and .suo files and user file from all projects. Just add them to the config file in:

    C:\Users\[USERNAME]\AppData\Roaming\Subversion\config ( in windows )

    Locate global-ignores part and add the following:

    global-ignores = *.suo bin obj *.csproj.user

提交回复
热议问题