How to I add something to the .gitignore so that the match is not recursive?

前端 未结 2 1833
闹比i
闹比i 2021-02-02 05:03

How to I add something to the .gitignore so that the match is not recursive?

For example, I wish to ignore the directory foo and the file

2条回答
  •  太阳男子
    2021-02-02 05:46

    The solution is to place a leading slash on the .gitignore entries:

    /foo/
    /bar.txt
    

    (I thought I tried this before posting on StackOverflow, but clearly I hadn't tried it properly, as this works perfectly.)

提交回复
热议问题