Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

make gitignore not igonre certain file code example

Example 1: how to put files into gitignore

$ echo debug.log >> .gitignore
$ git rm --cached debug.log
rm 'debug.log'
$ git commit -m "Start ignoring debug.log"

Example 2: git ignore not saving changes

git rm -rf --cached .
git add .

Tags:

Shell Example

Related

react router dom private route code example append a column to a dataframe in python code example font awesome icons react app code example vue router get param code example div class dropdowmn code example diference between dates sql code example find relative time moment js code example flutter moor default value code example shortcut for rename in mac code example js Date check if iso format is valid code example scss include bootstrap class code example herkou updated database from terminal code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy