Does node-red have track changes so any changes can be restored

Hello, does node-red track changes so any changes can be restored? I use git for other programming languages but not sure what the equivalent are for node-red?

Thanks

Hi @kelster101757

there is the projects feaure which you can enabled in your settings file and gives you git integration in the editor.

https://nodered.org/docs/user-guide/projects/

If you don't want to use the Projects feature then you can use git manually by committing files in the .node-red directory. This .gitignore file will mask the ones you don't need

*.backup*
node_modules
context
.config.users.json

.config.users.json contains information about how the editor is laid out so changes often, but you might want to commit that, or you might not.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.