How to avoid commiting for DW dynamic files?

commit, dreamweaver, git, gitignore

Solution

Add this to your .gitignore file, in the root directory of your repository:

[_]notes/

Let me know how you go, it worked for me.

Problem

While commiting git ask me to handle DreamWeaver dynamic files (*/_notes/dwsync.xml). There are lots of them and I don't know how to hide them because they are dynamic (so it's impossible to add them into .gitignore). Does anybody know how to solve that problem? ================================= UPD after getting the solution If you still see dwsync.xml appear, clean up the git cash: ``` git rm . -r --cached ``` it should help

Original source