From 0b54a1d2b3dc841634c22946454da108685c04b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=BCrst?= Date: Sat, 25 May 2019 20:58:45 +0900 Subject: [PATCH] Fix address of git remote for committers `git clone` didn't work with `git@git.ruby-lang.org:ruby/ruby.git`, but it works with `git@git.ruby-lang.org:ruby.git`, so we better use the later here. --- en/community/ruby-core/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/community/ruby-core/index.md b/en/community/ruby-core/index.md index 1ffb02ba96..7d1d7c2c95 100644 --- a/en/community/ruby-core/index.md +++ b/en/community/ruby-core/index.md @@ -39,7 +39,7 @@ If you have commit access, and if you want to push something, you should use the primary repository. {% highlight sh %} -$ git clone git@git.ruby-lang.org:ruby/ruby.git +$ git clone git@git.ruby-lang.org:ruby.git {% endhighlight %} ### Improving Ruby, Patch by Patch