Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Introduction to Git First Commits First Commits

i don't know what it wants me to do

itś telling me to ¨commit the staged file, with a message of "Add chapter 1". Rather than letting Git launch an editor, specify your commit message on the command line: use the -m command line option, and specify your message between "quotation marks".

1 Answer

Juan Luna Ramirez
Juan Luna Ramirez
9,038 Points

It seems now that you've added a file to the staging area, they just want you to commit it with a message. You always have to provide a message for a commit so you and other developers know what the changes are about. Vim (or whatever text editor is configured to open) will open if you don't provide a message. To provide a message (so the editor doesn't bother you about it) you have to use the -m flag. For example git commit -m "commit message"