I learning how to use git on a Mac and I'm trying to add a file in one of my branches by using the "cat > " command. The problem I'm having is that I want to end editing the file in the terminal but I do not know how to close it. I'm guessing that I need to change "modes" for lack of a better term. How do I proceed?
feedback
|
migrated from stackoverflow.com Oct 11 '10 at 23:13
This question came from our site for professional and enthusiast programmers.
|
Type Ctrl+D at the start of a new line. ^D is the "end of file" character when typed from a keyboard. Note that the ^D character itself is not entered into the file. The file ends just before the point where you type ^D. | |||||
feedback
|