# إدارة الإصدارات عبر git

يمكن ضبط QOwnNotes ليتابع التعديلات التي تتم في مجلد ملاحظاتك ويودعها آليًّا في مستودع git في مجلد ملاحظاتك.

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.

تحتاج كذلك إلى تفعيل دعم git في كل مجلد ملاحظات تريد إداراته عبر 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 "Your name"
1
2