Monthly Archives: November 2017

How to untrack files in Git

We all know how to add a file under Git tracking. But what can we do to untrack a file or directory? To untrack a file: git rm –cached filename To untrack a directory (recursively) git rm -r –cached dir_name … Continue reading

Posted in Software Engineering | Comments Off on How to untrack files in Git