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 Console Foundations Installing Software Introduction to Package Managers

Initialization of console

I might not be able to delete what I did in this course and redo from scratch again but has anyone out there restored or initialized to the default version of console? I couldn't find console in workspaces. Thank you in advance!

1 Answer

Ari Misha
Ari Misha
19,323 Points

Hiya egushi! Perhaps you can just revert all the commits until you reached your first commit. Follow the steps down below to get the commit you'd like to:

git reflog // Will give ya a list of commits and HEADS
git revert --hard HEAD~3 // 3 represents the range of the commit and you can specify any range you wanna here depends on the reflog in your case 

I hope it helps!

~ Ari