what command to use when adding a new file in gitignore code example
Example 1: git add gitignore
$ touch .gitignore
Example 2: create gitignore files
#Linux
$ touch .gitignore
#Windows
cd c:\
notepad .gitignore
#Accept the prompt to create the file, edit the contents accordingly, save and close.