File tree 2 files changed +24
-0
lines changed 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,14 @@ http.postBuffer::
199
199
Transfer-Encoding: chunked is used to avoid creating a
200
200
massive pack file locally. Default is 1 MiB, which is
201
201
sufficient for most requests.
202
+ +
203
+ Note that raising this limit is only effective for disabling chunked
204
+ transfer encoding and therefore should be used only where the remote
205
+ server or a proxy only supports HTTP/1.0 or is noncompliant with the
206
+ HTTP standard. Raising this is not, in general, an effective solution
207
+ for most push problems, but can increase memory consumption
208
+ significantly since the entire buffer is allocated even for small
209
+ pushes.
202
210
203
211
http.lowSpeedLimit, http.lowSpeedTime::
204
212
If the HTTP transfer speed is less than 'http.lowSpeedLimit'
Original file line number Diff line number Diff line change @@ -549,6 +549,22 @@ The untracked cache extension can be enabled by the
549
549
`core.untrackedCache` configuration variable (see
550
550
linkgit:git-config[1]).
551
551
552
+ NOTES
553
+ -----
554
+
555
+ Users often try to use the assume-unchanged and skip-worktree bits
556
+ to tell Git to ignore changes to files that are tracked. This does not
557
+ work as expected, since Git may still check working tree files against
558
+ the index when performing certain operations. In general, Git does not
559
+ provide a way to ignore changes to tracked files, so alternate solutions
560
+ are recommended.
561
+
562
+ For example, if the file you want to change is some sort of config file,
563
+ the repository can include a sample config file that can then be copied
564
+ into the ignored name and modified. The repository can even include a
565
+ script to treat the sample file as a template, modifying and copying it
566
+ automatically.
567
+
552
568
SEE ALSO
553
569
--------
554
570
linkgit:git-config[1],
You can’t perform that action at this time.
0 commit comments