9951 explained code solutions for 126 technologies


gitHow to untrack a file


git rm --cached file_namectrl + c
git rm

removes a file from git repo

--cached

will only remove files from repo data, file will still be available locally, but untracked

file_name

file name to untrack from git repo