Skip to content

devsync untrack

Stop tracking a path and remove it from the manifest.

Terminal window
devsync untrack <path>

devsync untrack removes a path from manifest.json, so it is no longer included in future push or pull operations.

The command accepts both a local absolute path (e.g. ~/.gitconfig) and a repository-relative path (the path as stored inside the sync repository, e.g. .gitconfig). Either form resolves to the same manifest entry.

Untracking a path does not delete the file from your local disk, nor does it remove the existing artifact from the sync repository. The removal takes effect on the next push or pull.

ArgumentDescription
pathThe local absolute path or repository-relative path to remove from tracking.
FlagDescription
--verbosePrint detailed output.
Terminal window
# Untrack by local path
devsync untrack ~/.gitconfig
# Untrack using a tilde-prefixed path
devsync untrack ~/.config/nvim
# Untrack using a repository-relative path
devsync untrack .gitconfig