summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2019-05-21 09:10:03 +0000
committerDouwe Maan <douwe@gitlab.com>2019-05-21 09:10:03 +0000
commitbc6addf690ee5b098c912614f14a7fc81a1a8313 (patch)
tree924b3c7561e018af5d06acbc6b6f7ac9f14a0afe
parent5c836c15ef9301769dbde60f6e5c84838d59bbae (diff)
parent929a864c250a70ffe77afda15bd24230918be519 (diff)
downloadgitlab-ce-bc6addf690ee5b098c912614f14a7fc81a1a8313.tar.gz
Merge branch 'bw-fix-merge-request-docs' into 'master'
"Checkout locally by adding a git alias" needs small change See merge request gitlab-org/gitlab-ce!28330
-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 723195224d0..09736c7fc7e 100644
--- a/doc/user/project/merge_requests/index.md
+++ b/doc/user/project/merge_requests/index.md
@@ -547,13 +547,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