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

docs: Specify origin in git push command in 3.8 #2608

Merged
merged 1 commit into from
Dec 3, 2021
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
4 changes: 2 additions & 2 deletions site/book/03-packages/08-publishing-a-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ git tag v0.1
Push the commit which requires you to have access to the repo:

```shell
$ git push v0.1
$ git push origin v0.1
```

You can then fetch the published package:
Expand All @@ -46,7 +46,7 @@ $ git tag packages/wordpress/v0.1
Push the commit:

```shell
$ git push packages/wordpress/v0.1
$ git push origin packages/wordpress/v0.1
```

You can then fetch the published package:
Expand Down