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 Git Basics Getting Started With Git Repository Basics

How to create a repository in a new folder???

It want me to create a repository in a new folder. How does one specify such.???

3 Answers

Kevin Korte
Kevin Korte
28,148 Points

Navigate to the folder in the console, and than type git init

a good way to remember that i found for me is to think of putting a file into the folder, and telling it to "get in it" or in code speak "git init". glad you got it figured out thou. happy coding.

Thanks, problem solved. Needed to type:

'git init my_repository'
or any other name.

The confusing part was thinking that I needed to specify a directory before the file name. That is UNNECESSARY!