Basically, this change tracking data is stored in internal tables and there is no way to manually clean it. But still, we can clear it by disabling / enabling change tracking for tables.
alter table <tableName> disable change_tracking alter table <tableName> enable change_tracking
This command will clear all change tracking related to a particular table.
Gunarathinam
source share