Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

Apply .gitignore on an existing repository

First of all, commit all pending changes.
Then run this command:
git rm -r --cached .
This removes everything from the index, then just run:

git add .
Commit it:

git commit -m ".gitignore is now working"
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Apply #existing #repository
ADD COMMENT
Topic
Name
5+4 =