Since the question does not specify any required tools, this contains a solution if you want to create a .gitignore
file using command prompt
or Windows Explorer
.
Command Prompt:
In case one receives the following error message on a Windows 10 system in command prompt because touch
is a command of git bash:
'touch' is not recognized as an internal or external command, operable
program or batch file.
You can either use the following command in command prompt (cmd):
echo. > .gitignore
or
type nul > .gitignore
as indicated here: Windows equivalent of 'touch' (i.e. the node.js way to create an index.html). This procedure will not generate a Text Document
as indicated in the problem statement, but a file that appears to not have any extension.
Windows Explorer:
If you try to do it in Windows 10 Explorer by clicking right mouse button(RMB)>New>Text Document
and you try to name it .gitignore
you can receive the following error:
You must type a file name.
This can be overcome by giving it the filename .gitignore.
. So if your git repository folder contains a folder named output
which you want to suppress/not sync, you can add it to the .gitignore
by editing the .gitignore.
file with a text editor and adding a line that contains /output
. This last procedure generates a file which is also a .txt
document as indicated in the problem statement, but as mentioned by @hobbs and @Youkool that is not a problem for git. Furthermore, the last procedure is verified in Windows 10 with git version 2.16.1.windows.4
.