Horje
git update gitignore Code Example
git update gitignore
git rm -r --cached .
git add .
git commit -m "update gitignore"
reinit gitignore
# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now, commit for new .gitignore to apply
git commit -m ".gitignore is now working"
gitigore rm cache
git rm -r --cached .
git add gitignore
$ touch .gitignore
remove gitignore files
git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft




Shell

Related
rails server already running Code Example rails server already running Code Example
how to uninstall react native cli globally Code Example how to uninstall react native cli globally Code Example
ubuntu remove kite Code Example ubuntu remove kite Code Example
git store credential Code Example git store credential Code Example
store git credentials Code Example store git credentials Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
30