File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,27 @@ dependencies:
41
41
- git
42
42
- something else i probably forgot
43
43
44
+ <!-- REMOVED because i'm dogfooding like never before. use nightly instead. -->
45
+ <!--
44
46
```sh
45
47
npm i -g git-stacked-rebase
46
48
47
49
# optional:
48
50
git config --global alias.stacked-rebase git-stacked-rebase
49
51
git config --global alias.rr git-stacked-rebase
50
52
```
53
+ -->
54
+
55
+ ``` sh
56
+ git clone https://github.com/kiprasmel/git-stacked-rebase
57
+ # or: git clone [email protected] :kiprasmel/git-stacked-rebase.git
58
+
59
+ cd git-stacked-rebase
60
+
61
+ ./nightly-setup-and-update
62
+ ```
63
+
64
+ [ ![ nightly] ( https://img.shields.io/github/workflow/status/kiprasmel/git-stacked-rebase/tests/nightly?label=nightly )] ( https://github.com/kiprasmel/git-stacked-rebase/actions/workflows/test.yml )
51
65
52
66
## Usage
53
67
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ # meant for CONSUMERS,
4
+ # NOT UPDATERS!
5
+
6
+ git checkout nightly
7
+ git pull --rebase
8
+
9
+ yarn
10
+ yarn --cwd nvim-git-rebase-todo
11
+ yarn --cwd git-reconcile-rewritten-list
12
+
13
+ yarn build
14
+
15
+ # # https://stackoverflow.com/a/69259147/9285308
16
+ # yarn global add link:.
17
+
18
+ # https://github.com/yarnpkg/yarn/issues/3256#issuecomment-433096967
19
+ yarn global add file:$PWD
You can’t perform that action at this time.
0 commit comments