Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Raedawn Long
6,943 PointsHow to add the file chapter1.txt to the staging area for committing?
Hello, I put > git add "chapter1.txt" but continue to get question incorrect.
3 Answers

Antonio De Rose
20,882 Pointsyou are actually adding files into git, when you do so, you cannot use them as strings,, when you use them as strings, that is only for messages like git commit -m 'anything of you like'
but for this time git add chapter1.txt

David Patrick
6,065 PointsAnswer: git add chapter1.txt

Raedawn Long
6,943 PointsThanks Antonio!
Stephanie Czetli
13,180 PointsStephanie Czetli
13,180 PointsThank you Antonio for pointing out a subtle difference between the add and commit commands: add -> do NOT use quotes around file name and extension commit -> USE quotes around file name and extension
That really helped me out with this challenge question!