How to ignore files starting with # in git

后端 未结 1 1573
[愿得一人]
[愿得一人] 2021-02-12 14:42

i like to know if it\'s possible (and if its possible how it can be achieved) to ignore files starting with # in git via .gitignore. I already tried

\\\\#.myfile         


        
1条回答
  •  一生所求
    2021-02-12 14:47

    Here is the right syntax for that:

    \#*
    

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