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 trial

Development Tools GitHub Basics Working By Yourself Push Your Project to GitHub

What 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

Hi these are two questions so I will split the answers up.

  1. 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.

  2. 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.

Thank 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.

Yes exactly that.

Here is a gif explaining it more

http://i.imgur.com/PQQ4t1A.gifv

Karla Gonzalez