

The Github quickstart guide has even more information on setting up and using git commands if you need support starting out using git commands.Time Travel in Your Project: Undo Changes with Git

You can visit our Tiny GitHub repositories, and see how we use git commands in practice. However, you should be very careful about performing hard resets, especially if you push your branch, as there is no way to restore your commit. This type of reset essentially erases your last commit. You can also perform a hard reset - git reset -hard HEAD~1.
UNDO GIT STASH CODE
Then you can tidy up your code in your IDE before making a cleaner commit. This means that the code appears as if it has not been committed yet. If you do find yourself in a situation where you’ve accidentally committed some messy code, you can do a “soft” reset. This will reset the most recent commit, and you can reset back more than one commit by changing the number after ~ e.g. To do this you can run git reset -soft HEAD~1. A soft reset should be reserved for a genuine mistake whereas a stash can be used to swap code in and out.

Git reset is a bit more confusing, especially when teaching new Git users. You can remove stashes individually by using git drop, or remove all stashes by using git stash clear. Note that when you have applied a stash, the stash isn’t deleted. You can also carry over your stashed commits to a new feature branch or debugging branch by using git stash branch. If the stashed file wasn’t the problem, you can restore the stash. Leave all but the suspected bug file unstaged (code must be staged to be stashed), then you can stash that file and troubleshoot the issue.
UNDO GIT STASH HOW TO
Here’s another example of how to use Git stash: say you have some new files, one of which has a bug. R un git stash, the uncommitted code disappears without being committed. This can often happen if you are on your master branch, and you have forgotten to create a new branch for your feature. Then, for some reason, you suddenly need to attend to another task and have to switch branches. Picture the following scenario: You’ve already made three neat and tidy commits, but you also have some uncommitted code that’s quite messy you won’t want to commit it without removing your debugging code first. If you decide not to commit your work once you have restored the stash, you can run git checkout, which resets all uncommitted code. You can also apply a specific stash (if you have stashed more than once) by running git stash apply (the ‘1’ denotes the second before the last stash). You can reapply the stashed content by running git stash apply. Now, you can safely change branches without losing your code or having a messy commit. After running git stash, your branch appears as it was when you made your last commit. It’s not possible to push a stash to a remote repository, so a stash is just for your own personal use. Stashing is like saving a temporary local commit to your branch. Git stash enables you to save your code without making a commitment.

There are two essential git commands to learn and apply: Our developers compiled their knowledge into a beginner’s Git class to help teach more about useful git commands. However, there's more to Git than a few simple commands. Every developer needs an understanding of version control, and Git has become the de-facto version control standard.
