File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,13 @@ Or use rust to install:
95
95
$ cargo install git-stack
96
96
```
97
97
98
+ We also recommend installing
99
+ [ ` git-branch-stash ` ] ( https://github.com/gitext-rs/git-branch-stash ) for easily
100
+ undoing ` git stack ` operations:
101
+ ``` console
102
+ $ cargo install git-branch-stash-cli
103
+ ```
104
+
98
105
### Uninstall
99
106
100
107
See the uninstall method for your installer.
@@ -204,6 +211,14 @@ If a commit summary is only `WIP` or is prefixed by:
204
211
205
212
* This includes the prefixes used by [ Gitlab] ( https://docs.gitlab.com/ee/user/project/merge_requests/drafts.html ) *
206
213
214
+ ### What is ` git branch-staash `
215
+
216
+ [ ` git-branch-stash ` ] ( https://github.com/gitext-rs/git-branch-stash ) is a
217
+ separate utility that is like ` git stash ` for instead of your working tree, it
218
+ stashes what commit each of your branches points to. ` git stack ` backs up
219
+ using ` git branch-stash ` s file format to lower the risk of trying things out
220
+ with ` git stack ` .
221
+
207
222
### Why don't you just ...?
208
223
209
224
Have an idea, we'd love to [ hear it] ( https://github.com/gitext-rs/git-stack/discussions ) !
Original file line number Diff line number Diff line change @@ -104,7 +104,9 @@ Why not `git push --set-upstream --force-with-lease origin <branch>`?
104
104
105
105
### ` git branch-stash `
106
106
107
- While ` git stash ` backs up and restores your working tree, ` git branch-stash ` backs up and restores the state of all of your branches.
107
+ While ` git stash ` backs up and restores your working tree,
108
+ [ ` git branch-stash ` ] ( https://github.com/gitext-rs/git-branch-stash ) backs up
109
+ and restores the state of all of your branches.
108
110
109
111
` git-stack ` implicitly does a ` git branch-stash ` whenever modifying the tree.
110
112
You can’t perform that action at this time.
0 commit comments