diff options
author | Fabian Tamp <[email protected]> | 2020-06-07 21:00:44 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-08-07 19:35:48 +0200 |
commit | f3cb0be35adddfe43423a19116994b53817d97f7 (patch) | |
tree | 69effeafe98b8b71363125059b3eae5cd51efa7a /CONTRIBUTING.md | |
parent | bffc4e12fe6d255e1fb8d28943993afc7e99e010 (diff) | |
download | hugo-f3cb0be35adddfe43423a19116994b53817d97f7.tar.gz hugo-f3cb0be35adddfe43423a19116994b53817d97f7.zip |
Fix a typo in CONTRIBUTING.md
The URL `git://github.com/USERNAME/hugo.git` is invalid; it should instead be either `https://github.com/USERNAME/hugo.git` or `[email protected]:USERNAME/hugo.git`. I chose the latter for this PR.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f39bd2fbe..bdfad9d7d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -144,7 +144,7 @@ Now, to make a change to Hugo's source: 1. Add your fork as a new remote (the remote name, "fork" in this example, is arbitrary): ```bash - git remote add fork git://github.com/USERNAME/hugo.git + git remote add fork [email protected]:USERNAME/hugo.git ``` 1. Push the changes to your new remote: |