Copy link to clipboard
Copied
Hello,
I'm currently having an issue where I have disabled the creation of the Dreamweaver design notes feature in my current site, yet Dreamweaver continues to create new _notes directories.
The setting that I have disabled in an attempt to prevent note creation: Site Setup/Site Settings > Advanced Settings > Design Notes - Uncheck Maintain Design Notes
This setting does not seem to actually stop the creation of these folders, although the "Clean Up Design Notes" does work to remove all _notes folders except for the root _notes folder.
After searching online for a while it seems that every answer is the same "Disable the creation of design notes in site settings" which seems to not work. If anyone else out there has the answer or a workaround for me I would appreciate it very much.
The reason I would like these folders removed is that I commit to a repository on GitHub, and the _notes folder counts as changes that are being made to the repository, resulting in a lot of illegitimate files being displayed as having been edited.
Thanks in advance!
P.S: I am running the latest subscription version of DreamWeaver CC
Create a file named .gitignore in the root directory. Inside that file, enter
_notes/
More info here https://git-scm.com/docs/gitignore
Copy link to clipboard
Copied
The _notes folder that you are referring to are not design notes, they are notes so that Dreamweaver can keep track of new/modified files. It is used to sync the remote and local files.
Copy link to clipboard
Copied
It seems that even when I have disabled syncing in Dreamweaver my issue persists.
Copy link to clipboard
Copied
The syncing that you are referring to can be used to synchronised the Dreamweaver program settings and those stored in the cloud. It has nothing to do with keeping track of transferred files/the _notes folder.
Why the fuss regarding the _notes folder?
Copy link to clipboard
Copied
When updating to GitHub it is quite annoying having a bunch of Dreamweaver _notes folders and files come up as code that is changed in my repository, which means I need to remove them. This can be a hassle so I would just like to remove them in the first place.
Copy link to clipboard
Copied
Create a file named .gitignore in the root directory. Inside that file, enter
_notes/
More info here https://git-scm.com/docs/gitignore
Copy link to clipboard
Copied
Ah, thank you, this proves to work well. Although it would still be nice to disable these folders and files completely not using a build in Git feature.