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 Introduction to Git Managing Committed Files Commit SHAs and Undoing Commits

GIT Beginner Having Issues with Revert Subcommand

'm learning to navigate GIT and have had issues using the "git revert" function with Bash on a MAC. I types the git executable and the revert subcommand along with the SHA: "git revert 2c881d" and I got the following error on the terminal:

"your local changes would be overwritten by revert. hint: commit your changes or stash them to proceed. fatal: revert failed" I have tried refreshing the console, git status, doing all I can to clear the terminal but I don't seem to have any options left. Help!

Best,

L

2 Answers

Cooper Runstein
Cooper Runstein
11,850 Points

Try 'git stash' and then retry 'get revert'

... use git stash ... regards, Jan. (GitDocs: Use git stash when you want to record the current state of the working directory and the index, but want to go back to a clean working directory. The command saves your local modifications away and reverts the working directory to match the HEAD commit)