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 trialChris Himes
8,043 PointsWhere is -> git checkout Stage1Video3? I am not able to connect to it. Thanks
Have installed the required files, but do not see how to complete the next step.
4 Answers
Cindy Mayfield
9,782 PointsI ran into this issue as well. The teacher's notes do not provide the following:
- after git clone ... , you need to run command cd treehouse-gulp-basics/ to access the correct folder. Then you can run git checkout ***.
This missing step tripped me up as well. :) Hope this helps.
Rafael silva
23,877 Pointsfollow all these step this work for me :
Clone this repo
git clone https://github.com/hdngr/treehouse-gulp-basics.git
Navigate into the directory
cd treehouse-gulp-basics
Install the project's node dependencies
npm install
Checkout the branch for the video you want to follow along with
git checkout <some-video>
Jaymes Young
36,282 PointsI would just download the project files from the downloads section. That's the easiest solution. You could also go to the github link and clone the repo.
Jeremy Castanza
12,081 PointsHuston Hedinger - This might be worth updating the teacher's notes. I can see were people who are new to Git might get tripped up on this. After cloning the GitHub repo, the user would need to run:
git checkout origin/Stage1Video3
instead of:
git checkout Stage1Video3
since they won't have your other branches locally until creating them.