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 trialKarla Gonzalez
Front End Web Development Techdegree Student 2,602 PointsWhat does Alyson mean by, "typically the name of the local directory matches the remotes repository's name?
Where does Alyson get mkdir from?
1 Answer
Sue Dough
35,800 PointsHi these are two questions so I will split the answers up.
What she is saying is that if your GitHub Project is called "TreehouseTest" then the folder on your local computer with the code in that repo is probably called "TreehouseTest" too. Usually people clone repos from GitHub and it makes the directory automatically.
mkdir makes a directory (Think of MK as make and dir as directory) and is a very command command. If I run this in the terminal
mkdir test
It makes a folder called test.
Karla Gonzalez
Front End Web Development Techdegree Student 2,602 PointsKarla Gonzalez
Front End Web Development Techdegree Student 2,602 PointsThank you! So is she making a directory to placing her ".py" files in, correct? My goal is to move my project from workspaces to the repo in Github.
Sue Dough
35,800 PointsSue Dough
35,800 PointsYes exactly that.
Sue Dough
35,800 PointsSue Dough
35,800 PointsHere is a gif explaining it more
http://i.imgur.com/PQQ4t1A.gifv
Karla Gonzalez