Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update copy action in README #193

Merged
merged 1 commit into from
Feb 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ in another branch. An easy way to update [gh-pages](https://pages.github.com/).
## Install

```console
$ dart pub global activate peanut
dart pub global activate peanut
```

_or_

```console
$ flutter pub global activate peanut
flutter pub global activate peanut
```

## Run

```console
$ peanut
peanut
```

_or_

```console
$ flutter pub global run peanut
flutter pub global run peanut
```

This will build your project into a temporary directory, and then it will update
Expand Down Expand Up @@ -112,14 +112,14 @@ The easiest way to push your `gh-pages` branch to github (without switching from
your working branch) is:

```console
$ git push origin --set-upstream gh-pages
git push origin --set-upstream gh-pages
```

To create (or update) your local `gh-pages` branch to match what's on the
server.

```console
$ git update-ref refs/heads/gh-pages origin/gh-pages
git update-ref refs/heads/gh-pages origin/gh-pages
```

This is also useful if you want to undo a `peanut` run.
Expand Down
Loading