-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from kiprasmel/default-to-nightly-builds
we're dogfooding like crazy so i don't wanna merge lfg!!!
- Loading branch information
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,13 +41,25 @@ dependencies: | |
- git | ||
- something else i probably forgot | ||
|
||
<!-- REMOVED because i'm dogfooding like never before. use nightly instead. --> | ||
<!-- | ||
```sh | ||
npm i -g git-stacked-rebase | ||
# optional: | ||
git config --global alias.stacked-rebase git-stacked-rebase | ||
git config --global alias.rr git-stacked-rebase | ||
``` | ||
--> | ||
|
||
```sh | ||
git clone https://github.com/kiprasmel/git-stacked-rebase | ||
# or: git clone [email protected]:kiprasmel/git-stacked-rebase.git | ||
|
||
cd git-stacked-rebase | ||
|
||
./nightly-setup-and-update | ||
``` | ||
|
||
## Usage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/sh | ||
|
||
# meant for CONSUMERS, | ||
# NOT UPDATERS! | ||
|
||
git checkout nightly | ||
git pull --rebase | ||
|
||
yarn | ||
yarn --cwd nvim-git-rebase-todo | ||
yarn --cwd git-reconcile-rewritten-list | ||
|
||
yarn build | ||
|
||
## https://stackoverflow.com/a/69259147/9285308 | ||
#yarn global add link:. | ||
|
||
# https://github.com/yarnpkg/yarn/issues/3256#issuecomment-433096967 | ||
yarn global add file:$PWD |