@@ -34,15 +34,15 @@ Set up your user information with your real name and a working email address:
34
34
35
35
.. tip ::
36
36
37
- If your IDE creates configuration files inside project's directory,
37
+ If your IDE creates configuration files inside the project's directory,
38
38
you can use global ``.gitignore `` file (for all projects) or
39
39
``.git/info/exclude `` file (per project) to ignore them. See
40
40
`Github's documentation `_.
41
41
42
42
.. tip ::
43
43
44
44
Windows users: when installing Git, the installer will ask what to do with
45
- line endings and suggests to replace all Lf by CRLF. This is the wrong
45
+ line endings, and suggests replacing all LF with CRLF. This is the wrong
46
46
setting if you wish to contribute to Symfony! Selecting the as-is method is
47
47
your best choice, as git will convert your line feeds to the ones in the
48
48
repository. If you have already installed Git, you can check the value of
@@ -52,8 +52,8 @@ Set up your user information with your real name and a working email address:
52
52
53
53
$ git config core.autocrlf
54
54
55
- This will return either "false", "input" or "true", "true" and "false" being
56
- the wrong values. Set it to another value by typing:
55
+ This will return either "false", "input" or "true"; "true" and "false" being
56
+ the wrong values. Change it to "input" by typing:
57
57
58
58
.. code-block :: bash
59
59
@@ -344,7 +344,7 @@ because you want early feedback on your work, add an item to todo-list:
344
344
.. code-block :: text
345
345
346
346
- [ ] finish the code
347
- - [ ] gather feedback my changes
347
+ - [ ] gather feedback for my changes
348
348
349
349
As long as you have items in the todo-list, please prefix the pull request
350
350
title with "[WIP]".
0 commit comments