summaryrefslogtreecommitdiff
path: root/doc/topics/git/stash.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/topics/git/stash.md')
-rw-r--r--doc/topics/git/stash.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/topics/git/stash.md b/doc/topics/git/stash.md
index d321795e034..638ab559bd3 100644
--- a/doc/topics/git/stash.md
+++ b/doc/topics/git/stash.md
@@ -7,8 +7,8 @@ comments: false
# Git Stash **(FREE)**
-We use `git stash` to store our changes when they are not ready to be committed
-and we need to change to a different branch.
+We use `git stash` to store our changes when they are not ready to be committed,
+but we must change to a different branch.
- Stash:
@@ -37,7 +37,7 @@ and we need to change to a different branch.
git stash list --stat
```
-- To clean our stack we need to manually remove them:
+- To clean our stack, manually remove them:
```shell
# drop top stash
@@ -54,7 +54,7 @@ and we need to change to a different branch.
git stash pop
```
-- If we meet conflicts we need to either reset or commit our changes.
+- If we meet conflicts, either reset or commit our changes.
- Conflicts through `pop` doesn't drop a stash afterwards.
## Git Stash sample workflow