DEV Community

Cover image for Remove file from Git change tracking list
Gunabalan.S
Gunabalan.S

Posted on

Remove file from Git change tracking list

The list is in the .gitignore file. Perhaps you added these files later, causing Git to start tracking them. How do you remove them from Git's tracking list?

git update-index --assume-unchanged .\frontend\src\config.json

Enter fullscreen mode Exit fullscreen mode

#git

Software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development.

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay