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 trialAmir Siahpolo
1,354 PointsTo create a repository, I am having an issue with the terminal window entering this command for a Mac
$ git init_my_first_repository
Message: git: 'init_my_first_repository' is not a git command. See 'git --help'.
1 Answer
Geoff Parsons
11,679 PointsAssuming "my_first_repository" is your project name what you're actually looking for is:
git init my_first_repository
The "init" is the command you're sending git.