ignoring any 'bin' directory on a git project

前端 未结 15 1835
暖寄归人
暖寄归人 2020-11-22 16:45

I have a directory structure like this:

.git/
.gitignore
main/
  ...
tools/
  ...
...

Inside main and tools, and any other directory, at an

15条回答
  •  日久生厌
    2020-11-22 17:18

    Literally none of the answers actually worked for me; the only one that worked for me was (on Linux):

    **/bin
    (yes without the / in the end)
    
    git version 2.18.0 
    

提交回复
热议问题