Visual Studio 2015 Database Project directory contains a file with extension jfm

前端 未结 2 1635
夕颜
夕颜 2020-11-29 18:04

Assuming we have a database project called MyDatabase then a file called MyDatabase.jfm appears in the root of the project directory.

2条回答
  •  北海茫月
    2020-11-29 18:44

    The takeaway from others is...

    • Add *.jfm to your .gitignore

    (In powershell, Add-Content .\.gitignore *.jfm)

    • You may need to run git rm --cached *.jfm

提交回复
热议问题