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 trialDonald Richmond
13,807 PointsHow 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
28,149 PointsNavigate to the folder in the console, and than type git init
Eric Trego
15,308 Pointsa 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.
Donald Richmond
13,807 PointsThanks, 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!