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 trialnelsongonzalezarango
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!