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(git): Fix a mistake in git:remote examples #1714

Merged
merged 1 commit into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ EXAMPLES
# set git remote heroku to https://git.heroku.com/example.git
$ heroku git:remote -a example

# set git remote heroku-staging to https://git.heroku.com/example-staging.git
# set git remote heroku-staging to https://git.heroku.com/example.git
$ heroku git:remote --remote heroku-staging -a example
```

Expand Down
2 changes: 1 addition & 1 deletion packages/git/src/commands/git/remote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ extra arguments will be passed to git remote add
static example = `# set git remote heroku to https://git.heroku.com/example.git
$ heroku git:remote -a example

# set git remote heroku-staging to https://git.heroku.com/example-staging.git
# set git remote heroku-staging to https://git.heroku.com/example.git
$ heroku git:remote --remote heroku-staging -a example`

static flags = {
Expand Down