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 trialMUZ140864 Tafadzwa Dube
3,765 Pointscan someone help me on task 11 of 11 on Git basics
Now let's check out the most recent commit (remember git calls this HEAD) so that we're ready to continue working.
the link to the question is below. am so confused what am doing as l have tried
git checkout -b HEAD git checkout master git checkout 1221f but it still won't pass
https://teamtreehouse.com/library/an-oldfashioned-gittogether
3 Answers
bothxp
16,510 PointsHi,
I've just worked through the challenge and all that you need for task 11 is
git checkout HEAD
MUZ140864 Tafadzwa Dube
3,765 Pointsthanx hey , l don't know how l missed that
Walter Nyamangodo
5,369 Pointshey you need to remove the '-b' from your code such that your code looks like this: 'git checkout HEAD'..... and this should pass