# Contrôle de version avec git

Vous pouvez configurer QOwnNotes pour automatiquement valider (« commit ») les changements de votre dossier de notes localement dans un dépôt git dans votre dossier de notes.

This can be done in the Git versioning settings in the General settings.

git-note-folder-settings

You need to have git installed on your system and the git executable needs to be in your PATH or you can set the path to the git executable in the Git versioning settings.

Il faut aussi activer le support de git pour chaque dossier de notes pour lequel vous souhaitez utiliser git !

git-note-folder-settings

TIP

Don't forget to set your git username and email address in the terminal:

git config --global user.email "[email protected]"
git config --global user.name "Votre nom"
1
2