diff options
author | Vishnu Ks <hackerkid@vishnuks.com> | 2016-02-02 00:33:46 +0530 |
---|---|---|
committer | Vishnu Ks <hackerkid@vishnuks.com> | 2016-02-02 00:33:46 +0530 |
commit | b818fd3b45bff94865c0e9bbae3ec490a12ccf98 (patch) | |
tree | 873779e421d81a19bb4c6041ff2be9c1d97d156d | |
parent | 25cf3f0d7cbb0307839c748fa8ee416a07e5e0e8 (diff) | |
download | rails-b818fd3b45bff94865c0e9bbae3ec490a12ccf98.tar.gz rails-b818fd3b45bff94865c0e9bbae3ec490a12ccf98.tar.bz2 rails-b818fd3b45bff94865c0e9bbae3ec490a12ccf98.zip |
.git added to https repo urls
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index 0ec6c99301..0f98d12217 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -105,7 +105,7 @@ $ git checkout -b testing_branch Then you can use their remote branch to update your codebase. For example, let's say the GitHub user JohnSmith has forked and pushed to a topic branch "orange" located at https://github.com/JohnSmith/rails. ```bash -$ git remote add JohnSmith https://github.com/JohnSmith/rails +$ git remote add JohnSmith https://github.com/JohnSmith/rails.git $ git pull JohnSmith orange ``` @@ -204,7 +204,7 @@ In case you can't use the Rails development box, see [this other guide](developm To be able to contribute code, you need to clone the Rails repository: ```bash -$ git clone https://github.com/rails/rails +$ git clone https://github.com/rails/rails.git ``` and create a dedicated branch: @@ -506,7 +506,7 @@ Navigate to the Rails [GitHub repository](https://github.com/rails/rails) and pr Add the new remote to your local repository on your local machine: ```bash -$ git remote add mine https://github.com:<your user name>/rails +$ git remote add mine https://github.com:<your user name>/rails.git ``` Push to your remote: @@ -520,7 +520,7 @@ You might have cloned your forked repository into your machine and might want to In the directory you cloned your fork: ```bash -$ git remote add rails https://github.com/rails/rails +$ git remote add rails https://github.com/rails/rails.git ``` Download new commits and branches from the official repository: @@ -605,7 +605,7 @@ Rails repository. This is useful anyway, but just in case you don't have it set up, make sure that you do this first: ```bash -$ git remote add upstream https://github.com/rails/rails +$ git remote add upstream https://github.com/rails/rails.git ``` You can call this remote whatever you'd like, but if you don't use `upstream`, |