How to create md file under windows

I am using git bash under windows because I am having problems with Linux right now. I have to make a commit, but I don't know how to create a file with an extension .md

under the Windows platform. could you tell me? thank

+3


source to share


2 answers


An .md

(short for MarkDown) is just a text file with some formatting options, such as **

bold text between the two sets (for example, GitHub has a pretty detailed manual ).



You can use any text editor, even Notepad, to create such a file.

+6


source


Do you also teach a Course in Coursera course? :)

Syntax:

touch filename.md

      



Nice page that I bookmarked:

http://www.typecastexception.com/post/2012/09/08/Basic-Git-Command-Line-Reference-for-Windows-Users.aspx

+4


source







All Articles