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 trialRaedawn 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,885 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,067 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!