Git Setup & Repository
Before tracking changes, your workspace folder must be configured as a Git repository.
1. Initializing a Repository
If your opened workspace folder is not currently a Git repository:
- Open the Version Control view or click the Git status bar badge.
- Select Initialize Git Repository.
- Notely will run
git initand create a local repository structure.
2. Cloning a Repository
To import an existing notes repository:
- Open the workspace dialogue on launch.
- Select Clone Git Repository.
- Input the repository HTTPS URL and destination folder.
- Input credentials if the repository is private.
3. Ignoring App Metadata (.notes-app)
Notely stores internal editor states, annotations, and caches in the .notes-app subdirectory. It is recommended to keep this out of version control:
- In Settings → Git Safety, enable Ignore .notes-app.
- Notely will automatically append
.notes-app/to your workspace.gitignorefile.