You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ Get the Source
10
10
--------------
11
11
12
12
Clone the [GitForWindows repository on GitHub](https://github.com/git-for-windows/git).
13
-
It is helpful create your own fork for storing your development branches.
13
+
It is helpful to create your own fork for storing your development branches.
14
14
15
-
Windows uses CRLF line endings, while Unix systems just use LF. See
15
+
Windows uses different line endings than Unix systems. See
16
16
[this GitHub article on working with line endings](https://help.github.com/articles/dealing-with-line-endings/#refreshing-a-repository-after-changing-line-endings)
17
-
if you have trouble.
17
+
if you have trouble with line endings.
18
18
19
19
Build the Source
20
20
----------------
@@ -23,7 +23,7 @@ First, download and install the latest [Git for Windows SDK (64-bit)](https://gi
23
23
When complete, you can run the Git SDK, which creates a new Git Bash terminal window with
24
24
the additional development commands, such as `make`.
25
25
26
-
The SDK uses a different credential manager, so you may still want to use normal Git
26
+
As of time of writing, the SDK uses a different credential manager, so you may still want to use normal Git
27
27
Bash for interacting with your remotes. Alternatively, use SSH rather than HTTPS and
28
28
avoid credential manager problems.
29
29
@@ -32,7 +32,7 @@ Here are some helpful variations:
32
32
33
33
*`make -j[N] DEVELOPER=1`: Compile new sources using up to N concurrent processes.
34
34
The `DEVELOPER` flag turns on all warnings; code failing these warnings will not be
35
-
accepted upstream.
35
+
accepted upstream ("upstream" = "the core Git project").
36
36
*`make clean`: Delete all compiled files.
37
37
38
38
When running `make`, you can use `-j$(nproc)` to automatically use the number of processors
@@ -108,7 +108,7 @@ You can also look at [the unofficial Chromium issues page](https://crbug.com/git
108
108
multi-platform issues. You can look at recent user questions on
Here at Microsoft, we are focused almost entirely on [improving performance](https://blogs.msdn.microsoft.com/devops/2018/01/11/microsofts-performance-contributions-to-git-in-2017/).
111
+
Or you can "scratch your own itch", i.e. address an issue you have with Git. The team at Microsoft where the Git for Windows maintainer works, for example, is focused almost entirely on [improving performance](https://blogs.msdn.microsoft.com/devops/2018/01/11/microsofts-performance-contributions-to-git-in-2017/).
112
112
We approach our work by finding something that is slow and try to speed it up. We start our
113
113
investigation by reliably reproducing the slow behavior, then running that example using
114
114
the MSVC build and tracing the results in PerfView.
0 commit comments