Why does git have a cache area?
What is its main function and what problem does it exist to solve?
You are busy with the work at hand, and suddenly there is a bug that must be fixed immediately. At this time, you can git stash 然后修复bug之后再git stash popcontinue the unfinished work
git stash
git stash pop
You are busy with the work at hand, and suddenly there is a bug that must be fixed immediately. At this time, you can
git stash
然后修复bug之后再git stash pop
continue the unfinished work