how to use gitignore .gitignore file code example
Example: how to generate gitignore file
echo "
bin/**
lib/**
pyvenv.cfg
**.pyc
" > .gitignore
cat .gitignore
echo "
bin/**
lib/**
pyvenv.cfg
**.pyc
" > .gitignore
cat .gitignore