how to build a .gitignore file code example
Example 1: how to create gitignore
node_modules/
someOtherfoler/
*.com
*.class
*.dll
*.exe
*.o
*.so
*.so
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
Example 2: create gitignore files
$ touch .gitignore
cd c:\<your path>
notepad .gitignore
Example 3: how to generate a .gitignore
echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.bash_profile && source ~/.bash_profile
Example 4: create gitignore files windows
cd c:\<your path>
notepad .gitignore
Accept the prompt to create the file, edit the contents accordingly, save and close.