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.

nelsongonzalezarango
6,385 PointsGit only cloning my README.md file and nothing else.
For some reason, when I am cloning a repository all of my files are not brought over, just my README.md file.
You can see a test I did here:
Am I missing something?
2 Answers

bzfchen
6,484 PointsDid you add files 1-3 to your repo? Check if they are being tracked with git status.

Nina Lee
14,670 PointsCheck the status to see which files are not on stage
git status
and then add all files in the project folder
git add -A
or you can add specific file
git add filename
then you can make commit and push
nelsongonzalezarango
6,385 Pointsnelsongonzalezarango
6,385 PointsThat was is it. Simple mistake I hopefully won't do again. :)
Thank you!