Change Tracking¶
Change tracking is a core feature of VersionPress. This page describes the three main facets of it:
Automatic change tracking¶
Most of the time, VersionPress works silently, simply tracking all the important changes and recording them for later use. This includes both files and database entities like posts or comments. This section contains some specifics on what is tracked and how.
Note
The info below might not be entirely complete as there are lots of details for various content types. Consider it a brief overview.
Files¶
Most tracked changes involve database entities which are described below but some actions involve files as well. These are the common situations:
- Theme installations, uninstallations and updates
- Note: theme files are often edited manually and externally, in some kind of editor, which is not (and cannot be) tracked by VersionPress automatically. Please see Manual change tracking.
- Plugin installations, uninstallations and updates
- WordPress core updates
- Media uploads
- Translations
When any such action happens, VersionPress commits both the database change and a related file(s) change. For example, when installing a plugin, VersionPress will take note that the list of installed plugins has been changed in the database and commit the corresponding plugin files as well.
Note that not all files are versioned because you e.g. don't want to commit cache files, large backup ZIPs etc. Please refer to the What's not tracked section for more.
Database entities¶
The biggest added value of VersionPress is in database change tracking. This section describes what database entities are tracked and how.
Posts¶
Posts are the main pieces of content in WordPress which includes both posts and pages by default but also some other post types as well.
Custom post types and fields are generally supported and also work with popular plugins like ACF.
Tracked actions:
- Create post
- Edit post
- Create draft
- Update draft
- Publish draft
- Trash post
- Untrash post
- Delete post
Special treatment:
- We don't track WordPress revisions, i.e., posts of a type
revision
. Git versions are our revisions – more powerful, space efficient etc. - Drafts are treated specially because WordPress updates them unnecessarily often. VersionPress ignores most of the internal updates and only stores a new revisions when a draft is saved or eventually published as a full post.
- (In more detail, the draft is first stored by VersionPress when the post state changes from
auto-draft
todraft
. This happens either after title is filled in and the field loses focus, or after a couple of seconds timeout. The next revision of that draft is then created every time the user clicks Save draft, or, eventually, when he/she publishes the post. New revision is not created when the user clicks Preview.)
- (In more detail, the draft is first stored by VersionPress when the post state changes from
- Attachments are special types of posts too. VersionPress tracks both the database change related to these post types as well as files created on the disk.
Postmeta¶
Postmeta stores post metadata about posts like the page template used, featured image displayed etc. Some WP-internal postmeta that are not significant for VersionPress (like _edit_lock
) are ignored.
Tracked actions:
- Create postmeta
- Edit postmeta
- Delete postmeta
Comments¶
Tracked actions:
- Create comment
- Edit comment
- Delete comment
- Trash comment
- Untrash comment
Comment workflows (pending, approved etc.) are going to be supported post-1.0-beta1 release.
Options¶
Most options are tracked but e.g. transient options and some others are ignored.
Tracked actions:
- Create option
- Edit option
- Delete option
Users¶
Tracked actions:
- Create user
- Edit user
- Delete user
Usermeta¶
Quite a lot of user properties are stored as usermeta. Most usermeta are tracked, some are intentionally ignored (e.g., session tokens).
Terms¶
Terms are things like categories or tags (or custom types, depending on term taxonomies).
Tracked actions:
- Create term
- Edit term
- Delete term
Term taxonomies¶
Defines meaning for terms. Tracked together with terms.
Widgets¶
Widgets are technically entries in the options
table and are fully supported.
Menus¶
Menus are technically stored as half terms (the menu itself), half posts (menu items) and are fully supported.
Other entities¶
VersionPress tracks everything that goes into the standard WordPress tables, which often covers even 3rd party WP plugins if they use features like custom post types etc. VersionPress doesn't track any custom database tables by default.
Manual change tracking¶
Some changes cannot be auto-tracked by VersionPress, e.g., manual file edits on the disk or FTP uploads. In such cases, you need to commit the changes manually.
You can use any Git client for it or, since VersionPress 2.0, there is a GUI for it:
VersionPress treats manual commits exactly the same as auto-generated commits – they will be visible in the table, undo or rollback them, etc.
Frequent DB writes¶
Some entities are changed very often, e.g., view counters, Akismet spam count, etc. VersionPress only saves them once in an hour. Thus, you don't need to worry about being flooded with commits.
What's not tracked¶
There are certain things that VersionPress intentionally omits from versioning:
- wp-config.php – this file is environment-specific which means there would be collisions between various developers, staging/live environments etc. However, some parts of the config should be shared which is why VersionPress introduced wp-config.common.php in v3.0 – this file is committed in the Git repo and
require
'd fromwp-config.php
. See Configuration for details. - VersionPress itself – the folder
plugins/versionpress
is excluded because you don't want a rollback to take you to a state where VersionPress is outdated and possibly buggy. - Anything in
wp-content
other than plugins, themes and uploads. Common things inwp-content
are backup folders, cache directories etc. which should generally not be versioned. - Log files, system files etc.
Updating ignore rules¶
Ignoring is done using the standard Gitignore files and VersionPress will try to install appropriate .gitignore
files upon its activation.
Existing .gitignore will not be modified
If the installation finds existing .gitignore
file already in place, it will assume that the site is managed professionally and will not attempt to modify the ignore rules itself. The user will be notified about this.
As an example, let's say that you have a wp-content/myfolder
folder that you want to track. This is a part of the default .gitgnore
file which causes the myfolder
being ignored:
wp-content/*
!wp-content/plugins/
!wp-content/themes/
!wp-content/uploads/
It basically reads "ignore everything in wp-content (line 1) except plugins (line 2), themes (line 3) and uploads (line 4)". To add myfolder
to tracking, just add a fifth line:
wp-content/*
!wp-content/plugins/
!wp-content/themes/
!wp-content/uploads/
!wp-content/myfolder/