Ver código fonte

Fix link to Git basics section

Stuart Kent 9 anos atrás
pai
commit
28d070d0c9
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2
    2
      README.md

+ 2
- 2
README.md Ver arquivo

@@ -34,7 +34,7 @@ To submit a fix for an existing exercise or port an exercise to Java with the le
34 34
    (see [exercism.io: Installing Java](http://exercism.io/languages/java/installing))
35 35
 -  **Setup a branch on a fork of [exercism/java](https://github.com/exercism/java) on your computer.**
36 36
 
37
-   See [GitHub Help: Forking](https://help.github.com/articles/fork-a-repo/).  Use those instructions (in conjunction with [Exercism Contributing Guide](https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md#git-basics)) to:
37
+   See [GitHub Help: Forking](https://help.github.com/articles/fork-a-repo/).  Use those instructions (in conjunction with the [Git basics doc](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/git-basics.md)) to:
38 38
    * "fork" a repository on GitHub;
39 39
    - install `git`;
40 40
    - "clone" a copy of your fork;
@@ -52,7 +52,7 @@ To submit a fix for an existing exercise or port an exercise to Java with the le
52 52
    $ git push
53 53
    ```
54 54
 
55
-   [Git Basics :: Commit Messages](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/git-basics.md#commit-messages) provides practical advice on crafting meaningful commit messages.
55
+   The Git Basics doc has a section on [commit messages](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/git-basics.md#commit-messages) that provides practical advice on crafting meaningful commit messages.
56 56
 -  **Verify that your work passes all tests.**  When you create a pull request (PR), GitHub triggers a build on Travis CI.  Your PR will not be merged unless those tests pass.
57 57
 
58 58
 ## Getting Familiar With the Codebase