Skip to content

Commit aeb148b

Browse files
committed
create nightly-setup-and-update.sh script, update docs to default to nightly builds
Signed-off-by: Kipras Melnikovas <[email protected]>
1 parent f678d85 commit aeb148b

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,27 @@ dependencies:
4141
- git
4242
- something else i probably forgot
4343

44+
<!-- REMOVED because i'm dogfooding like never before. use nightly instead. -->
45+
<!--
4446
```sh
4547
npm i -g git-stacked-rebase
4648
4749
# optional:
4850
git config --global alias.stacked-rebase git-stacked-rebase
4951
git config --global alias.rr git-stacked-rebase
5052
```
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)
5165

5266
## Usage
5367

nightly-setup-and-update.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

0 commit comments

Comments
 (0)