Skip to content

Commit

Permalink
Remove v in git remote command in dev installation (#6688)
Browse files Browse the repository at this point in the history
Update docs/dev/development.md - fix recommended git command
to look up branches on the upstream remote.

Fixes #6686
  • Loading branch information
vtomole authored Jul 31, 2024
1 parent 94f1e09 commit f5566b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ This remote can be used to merge changes from Cirq's main repository into your l
```

You can check the branches that are on the ```upstream``` remote by
running ```git remote -va``` or ```git branch -r```.
running `git ls-remote --heads upstream` or `git branch -r`.
Most importantly you should see ```upstream/main``` listed.
1. Merge the upstream main into your local main so that it is up to date.

Expand Down

0 comments on commit f5566b6

Please sign in to comment.