Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 493 Bytes

git_faq.md

File metadata and controls

9 lines (8 loc) · 493 Bytes

Git FAQ

While development you will come across several issue and questions with Git and GitHub. This page will give you a fair knowledge of how to address those common issues and questions.

How to remove git cache and update .gitignore

Several times, we missed to update .gitignore and upload files which we should not. Follow this process to update and remove your .gitignore cache and update repositories.

$ git rm -r --cached .
$ git add .
$ git commit -m "Your message"