example .gitignore file
Example 1: how to generate gitignore file
echo "
bin/**
lib/**
pyvenv.cfg
**.pyc
" > .gitignore
cat .gitignore
Example 2: git ignore not saving changes
git rm -rf --cached .
git add .
echo "
bin/**
lib/**
pyvenv.cfg
**.pyc
" > .gitignore
cat .gitignore
git rm -rf --cached .
git add .