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 trialRidge Christianson
2,289 PointsWhen I type git commit without the -m it just says On branch master Untracked files: bronze.html Nano doesn't show up
When I type git commit without the -m it just says On branch master Untracked files: bronze.html.. How do I reset it to the before i commit
1 Answer
Jamie Reardon
Treehouse Project ReviewerHi @Ridge Christianson if you typed that command without staging any changes then there will be no commit, so you'd essentially be where you were before typing the command in the first place. However, having said that if you do wish to reset to the previous commit before your latest, you can simply type the command: git reset --soft HEAD~1
which will undo the latest commit but keep the changes staged. Please see below for other examples of the command you could also use.
-
git reset --hard HEAD~1
- to go back a commit but lose the changes (opposite of the one I mentioned above) -
git reset --hard <commit id>
- resets to a specific commit