Create a git ignore file with command line

Create a .gitignore file using the command line tool for Windows and Linux.

Windows

echo 2> t.gitignore

ren t.gitignore .gitignore

Linux

touch t.gitignore

mv t.gitignore .gitignore