what is it? when you want to record the current state of the working directory, but want to go back to a clean working directory or switching the branch without committing any code and losing any file. The command saves your local modifications away and reverts the working directory to match the HEAD commit. How to use
What is it? Choosing a commit from one branch and apply it to another. without merging all the changes. How to do that? first, checkout to the destination branch [crayon-66e7665ba8639780443394/] then find the commit hash you want to use and add use the following code to apply that into the current branch: [crayon-66e7665ba8640804228408/] what about