Merge branch 'bc/misconception-doc' into maint
Doc updates. * bc/misconception-doc: docs: mention when increasing http.postBuffer is valuable doc: dissuade users from trying to ignore tracked files
This commit is contained in:
@ -199,6 +199,14 @@ http.postBuffer::
|
|||||||
Transfer-Encoding: chunked is used to avoid creating a
|
Transfer-Encoding: chunked is used to avoid creating a
|
||||||
massive pack file locally. Default is 1 MiB, which is
|
massive pack file locally. Default is 1 MiB, which is
|
||||||
sufficient for most requests.
|
sufficient for most requests.
|
||||||
|
+
|
||||||
|
Note that raising this limit is only effective for disabling chunked
|
||||||
|
transfer encoding and therefore should be used only where the remote
|
||||||
|
server or a proxy only supports HTTP/1.0 or is noncompliant with the
|
||||||
|
HTTP standard. Raising this is not, in general, an effective solution
|
||||||
|
for most push problems, but can increase memory consumption
|
||||||
|
significantly since the entire buffer is allocated even for small
|
||||||
|
pushes.
|
||||||
|
|
||||||
http.lowSpeedLimit, http.lowSpeedTime::
|
http.lowSpeedLimit, http.lowSpeedTime::
|
||||||
If the HTTP transfer speed is less than 'http.lowSpeedLimit'
|
If the HTTP transfer speed is less than 'http.lowSpeedLimit'
|
||||||
|
@ -549,6 +549,22 @@ The untracked cache extension can be enabled by the
|
|||||||
`core.untrackedCache` configuration variable (see
|
`core.untrackedCache` configuration variable (see
|
||||||
linkgit:git-config[1]).
|
linkgit:git-config[1]).
|
||||||
|
|
||||||
|
NOTES
|
||||||
|
-----
|
||||||
|
|
||||||
|
Users often try to use the assume-unchanged and skip-worktree bits
|
||||||
|
to tell Git to ignore changes to files that are tracked. This does not
|
||||||
|
work as expected, since Git may still check working tree files against
|
||||||
|
the index when performing certain operations. In general, Git does not
|
||||||
|
provide a way to ignore changes to tracked files, so alternate solutions
|
||||||
|
are recommended.
|
||||||
|
|
||||||
|
For example, if the file you want to change is some sort of config file,
|
||||||
|
the repository can include a sample config file that can then be copied
|
||||||
|
into the ignored name and modified. The repository can even include a
|
||||||
|
script to treat the sample file as a template, modifying and copying it
|
||||||
|
automatically.
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
--------
|
--------
|
||||||
linkgit:git-config[1],
|
linkgit:git-config[1],
|
||||||
|
Reference in New Issue
Block a user