How can I create this file in a directory in windows 2003 SP2:

.hgignore

I get error: You must type a file name.

link|improve this question

73% accept rate
5  
This is not related to software development? How to make an ignore file on windows server for mercurial? What is it related to, then, masonry and plumbing? – Christopher Mahan Mar 21 '11 at 18:54
feedback

closed as off topic by Will Feb 15 '11 at 19:56

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 16 down vote accepted

That's a "feature" of Windows Explorer. Try to create your files from a command line (or from a batch/program you wrote) and it should work fine. Try this from a dos prompt:

echo Hello there! > .hgignore
link|improve this answer
feedback

By the way Raymond Chen had a blog post about this topic a while back:

Why doesn't Explorer let you create a file whose name begins with a dot?

In which he mentions

You can do it from the command line or use your favorite file management tool.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.