summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Walker <bwalker@gitlab.com>2019-05-15 09:30:31 -0500
committerBrett Walker <bwalker@gitlab.com>2019-05-15 09:30:31 -0500
commit929a864c250a70ffe77afda15bd24230918be519 (patch)
treee83208c91b324386e81acd64c09d4a17b6fceb08
parente5d2e7e677455ed620652e3a641718f6984a0b37 (diff)
downloadgitlab-ce-bw-fix-merge-request-docs.tar.gz
Example should better reflect our default 'origin'bw-fix-merge-request-docs
-rw-r--r--doc/user/project/merge_requests/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/project/merge_requests/index.md b/doc/user/project/merge_requests/index.md
index 2bb2d906453..fb0a8f7d965 100644
--- a/doc/user/project/merge_requests/index.md
+++ b/doc/user/project/merge_requests/index.md
@@ -539,13 +539,13 @@ Add the following alias to your `~/.gitconfig`:
Now you can check out a particular merge request from any repository and any
remote. For example, to check out the merge request with ID 5 as shown in GitLab
-from the `upstream` remote, do:
+from the `origin` remote, do:
```
-git mr upstream 5
+git mr origin 5
```
-This will fetch the merge request into a local `mr-upstream-5` branch and check
+This will fetch the merge request into a local `mr-origin-5` branch and check
it out.
#### Checkout locally by modifying `.git/config` for a given repository