devsync untrack
Stop tracking a path and remove it from the manifest.
Synopsis
Section titled “Synopsis”devsync untrack <path>Description
Section titled “Description”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.
Arguments
Section titled “Arguments”| Argument | Description |
|---|---|
path | The local absolute path or repository-relative path to remove from tracking. |
Options
Section titled “Options”| Flag | Description |
|---|---|
--verbose | Print detailed output. |
Examples
Section titled “Examples”# Untrack by local pathdevsync untrack ~/.gitconfig
# Untrack using a tilde-prefixed pathdevsync untrack ~/.config/nvim
# Untrack using a repository-relative pathdevsync untrack .gitconfig