mirror of
https://github.com/git-for-windows/git.git
synced 2026-06-10 22:15:04 -05:00
Merge branch 'ak/typofixes' into next
Typofixes. * ak/typofixes: doc: fix typos via codespell
This commit is contained in:
@@ -92,7 +92,7 @@ input and avoids unnecessary churn from many rapid iterations.
|
||||
topic are appropriate, so such an incremental updates are limited to
|
||||
small corrections and polishing. After a topic cooks for some time
|
||||
(like 7 calendar days) in 'next' without needing further tweaks on
|
||||
top, it gets merged to the 'master' branch and wait to become part
|
||||
top, it gets merged to the 'master' branch and waits to become part
|
||||
of the next major release.
|
||||
|
||||
In the following sections, many techniques and conventions are listed
|
||||
|
||||
@@ -134,7 +134,7 @@ the `clean.requireForce` config option is set to `false`.
|
||||
+
|
||||
The `--dry-run` option will list the directories that would be removed
|
||||
without deleting them. Running in this mode can be helpful to predict the
|
||||
behavior of the clean comand or to determine which kinds of files are left
|
||||
behavior of the clean command or to determine which kinds of files are left
|
||||
in the sparse directories.
|
||||
+
|
||||
The `--verbose` option will list every file within the directories that
|
||||
|
||||
@@ -47,7 +47,7 @@ Auto-detection of the following items is considered to be important:
|
||||
|
||||
- Check for the existence of headers.
|
||||
- Check for the existence of libraries.
|
||||
- Check for the existence of exectuables.
|
||||
- Check for the existence of executables.
|
||||
- Check for the runtime behavior of specific functions.
|
||||
- Check for specific link order requirements when multiple libraries are
|
||||
involved.
|
||||
@@ -106,7 +106,7 @@ by the build system:
|
||||
|
||||
- C: the primary compiled language used by Git, must be supported. Relevant
|
||||
toolchains are GCC, Clang and MSVC.
|
||||
- Rust: candidate as a second compiled lanugage, should be supported. Relevant
|
||||
- Rust: candidate as a second compiled language, should be supported. Relevant
|
||||
toolchains is the LLVM-based rustc.
|
||||
|
||||
Built-in support for the respective languages is preferred over support that
|
||||
@@ -142,7 +142,7 @@ The following list of build systems are considered:
|
||||
|
||||
=== GNU Make
|
||||
|
||||
- Platform support: ubitquitous on all platforms, but not well-integrated into Windows.
|
||||
- Platform support: ubiquitous on all platforms, but not well-integrated into Windows.
|
||||
- Auto-detection: no built-in support for auto-detection of features.
|
||||
- Ease of use: easy to use, but discovering available options is hard. Makefile
|
||||
rules can quickly get out of hand once reaching a certain scope.
|
||||
|
||||
@@ -1351,7 +1351,7 @@ static void write_pack_file(void)
|
||||
* length of them as buffer length.
|
||||
*
|
||||
* Note that we need to subtract one though to
|
||||
* accomodate for the sideband byte.
|
||||
* accommodate for the sideband byte.
|
||||
*/
|
||||
struct hashfd_options opts = {
|
||||
.progress = progress_state,
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
* This method is only used to enhance coverage of the commit-graph
|
||||
* feature in the test suite with the GIT_TEST_COMMIT_GRAPH and
|
||||
* GIT_TEST_COMMIT_GRAPH_CHANGED_PATHS environment variables. Do not
|
||||
* call this method oustide of a builtin, and only if you know what
|
||||
* call this method outside of a builtin, and only if you know what
|
||||
* you are doing!
|
||||
*/
|
||||
void git_test_write_commit_graph_or_die(struct odb_source *source);
|
||||
|
||||
@@ -89,7 +89,7 @@ const char *precompose_string_if_needed(const char *in)
|
||||
out = reencode_string_iconv(in, inlen, ic_prec, 0, &outlen);
|
||||
if (out) {
|
||||
if (outlen == inlen && !memcmp(in, out, outlen))
|
||||
free(out); /* no need to return indentical */
|
||||
free(out); /* no need to return identical */
|
||||
else
|
||||
in = out;
|
||||
}
|
||||
|
||||
2
hook.h
2
hook.h
@@ -128,7 +128,7 @@ struct run_hooks_opt {
|
||||
* While the callback allows piecemeal writing, it can also be
|
||||
* used for smaller inputs, where it gets called only once.
|
||||
*
|
||||
* Add hook callback initalization context to `feed_pipe_ctx`.
|
||||
* Add hook callback initialization context to `feed_pipe_ctx`.
|
||||
* Add hook callback internal state to `feed_pipe_cb_data`.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -106,7 +106,7 @@ option('highlight_bin', type: 'string', value: 'highlight')
|
||||
|
||||
# Documentation.
|
||||
option('docs', type: 'array', choices: ['man', 'html'], value: [],
|
||||
description: 'Which documenattion formats to build and install.')
|
||||
description: 'Which documentation formats to build and install.')
|
||||
option('default_help_format', type: 'combo', choices: ['man', 'html', 'platform'], value: 'platform',
|
||||
description: 'Default format used when executing git-help(1).')
|
||||
option('docs_backend', type: 'combo', choices: ['asciidoc', 'asciidoctor', 'auto'], value: 'auto',
|
||||
|
||||
@@ -1461,7 +1461,7 @@ static int write_midx_internal(struct write_midx_opts *opts)
|
||||
|
||||
/*
|
||||
* Attempt opening the pack index to populate num_objects.
|
||||
* Ignore failiures as they can be expected and are not
|
||||
* Ignore failures as they can be expected and are not
|
||||
* fatal during this selection time.
|
||||
*/
|
||||
open_pack_index(oldest);
|
||||
|
||||
@@ -344,7 +344,7 @@ static inline int odb_source_read_object_stream(struct odb_read_stream **out,
|
||||
* are only iterated over once.
|
||||
*
|
||||
* The optional `request` structure serves as a template for retrieving the
|
||||
* object info for each indvidual iterated object and will be populated as if
|
||||
* object info for each individual iterated object and will be populated as if
|
||||
* `odb_source_read_object_info()` was called on the object. It will not be
|
||||
* modified, the callback will instead be invoked with a separate `struct
|
||||
* object_info` for every object. Object info will not be read when passing a
|
||||
|
||||
@@ -124,7 +124,7 @@ struct packfile_store {
|
||||
* that packs that contain a lot of accessed objects will be located
|
||||
* towards the front.
|
||||
*
|
||||
* This is usually desireable, but there are exceptions. One exception
|
||||
* This is usually desirable, but there are exceptions. One exception
|
||||
* is when the looking up multiple objects in a loop for each packfile.
|
||||
* In that case, we may easily end up with an infinite loop as the
|
||||
* packfiles get reordered to the front repeatedly.
|
||||
|
||||
2
path.h
2
path.h
@@ -217,7 +217,7 @@ void safe_create_dir(struct repository *repo, const char *dir, int share);
|
||||
*
|
||||
* - It always adjusts shared permissions.
|
||||
*
|
||||
* Returns a negative erorr code on error, 0 on success.
|
||||
* Returns a negative error code on error, 0 on success.
|
||||
*/
|
||||
int safe_create_dir_in_gitdir(struct repository *repo, const char *path);
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ struct reftable_flock {
|
||||
* to acquire the lock. If `timeout_ms` is 0 we don't wait, if it is negative
|
||||
* we block indefinitely.
|
||||
*
|
||||
* Retrun 0 on success, a reftable error code on error. Specifically,
|
||||
* Return 0 on success, a reftable error code on error. Specifically,
|
||||
* `REFTABLE_LOCK_ERROR` should be returned in case the target path is already
|
||||
* locked.
|
||||
*/
|
||||
|
||||
2
t/README
2
t/README
@@ -972,7 +972,7 @@ see test-lib-functions.sh for the full list and their options.
|
||||
- test_lazy_prereq <prereq> <script>
|
||||
|
||||
Declare the way to determine if a test prerequisite <prereq> is
|
||||
satisified or not, but delay the actual determination until the
|
||||
satisfied or not, but delay the actual determination until the
|
||||
prerequisite is actually used by "test_have_prereq" or the
|
||||
three-arg form of the test_expect_* functions. For example, this
|
||||
is how the SYMLINKS prerequisite is declared to see if the platform
|
||||
|
||||
@@ -35,7 +35,7 @@ my $emit_all;
|
||||
#
|
||||
# In other languages, `1+2` would typically be scanned as three tokens
|
||||
# (`1`, `+`, and `2`), but in shell it is a single token. However, the similar
|
||||
# `1 + 2`, which embeds whitepace, is scanned as three token in shell, as well.
|
||||
# `1 + 2`, which embeds whitespace, is scanned as three token in shell, as well.
|
||||
# In shell, several characters with special meaning lose that meaning when not
|
||||
# surrounded by whitespace. For instance, the negation operator `!` is special
|
||||
# when standing alone surrounded by whitespace; whereas in `foo!uucp` it is
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
2 if condition not satisified
|
||||
2 if condition not satisfied
|
||||
3 then
|
||||
4 echo it did not work...
|
||||
5 echo failed!
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
test_expect_success 'chain-break-false' '
|
||||
# LINT: broken &&-chain okay if explicit "false" signals failure
|
||||
if condition not satisified
|
||||
if condition not satisfied
|
||||
then
|
||||
echo it did not work...
|
||||
echo failed!
|
||||
|
||||
@@ -502,7 +502,7 @@ test_expect_success 'do not refresh null base index' '
|
||||
git checkout main &&
|
||||
git update-index --split-index &&
|
||||
test_commit more &&
|
||||
# must not write a new shareindex, or we wont catch the problem
|
||||
# must not write a new shareindex, or we will not catch the problem
|
||||
git -c splitIndex.maxPercentChange=100 merge --no-edit side-branch 2>err &&
|
||||
# i.e. do not expect warnings like
|
||||
# could not freshen shared index .../shareindex.00000...
|
||||
|
||||
@@ -29,7 +29,7 @@ verify_expect () {
|
||||
test_expect_success 'simplest' '
|
||||
restore_checkpoint &&
|
||||
|
||||
# More files are written to make sure that git didnt ignore
|
||||
# More files are written to make sure that git did not ignore
|
||||
# --pathspec-from-file, stashing everything
|
||||
echo A >fileA.t &&
|
||||
echo B >fileB.t &&
|
||||
@@ -47,7 +47,7 @@ test_expect_success 'simplest' '
|
||||
test_expect_success '--pathspec-file-nul' '
|
||||
restore_checkpoint &&
|
||||
|
||||
# More files are written to make sure that git didnt ignore
|
||||
# More files are written to make sure that git did not ignore
|
||||
# --pathspec-from-file, stashing everything
|
||||
echo A >fileA.t &&
|
||||
echo B >fileB.t &&
|
||||
@@ -66,7 +66,7 @@ test_expect_success '--pathspec-file-nul' '
|
||||
test_expect_success 'only touches what was listed' '
|
||||
restore_checkpoint &&
|
||||
|
||||
# More files are written to make sure that git didnt ignore
|
||||
# More files are written to make sure that git did not ignore
|
||||
# --pathspec-from-file, stashing everything
|
||||
echo A >fileA.t &&
|
||||
echo B >fileB.t &&
|
||||
|
||||
@@ -420,7 +420,7 @@ test_expect_success 'merge --stat respects COLUMNS with long name' '
|
||||
# enough terminal display width, will contain the following line:
|
||||
# "<RED>|<RESET> ${FILENAME} | 0"
|
||||
# where "<RED>" and "<RESET>" are ANSI escape codes to color the text.
|
||||
# To calculate the minimium terminal display width MIN_TERM_WIDTH so that the
|
||||
# To calculate the minimum terminal display width MIN_TERM_WIDTH so that the
|
||||
# FILENAME in the diffstat will not be shortened, we take the FILENAME length
|
||||
# and add 9 to it.
|
||||
# To check if the diffstat width, when the line_prefix (the "<RED>|<RESET>" of
|
||||
|
||||
@@ -159,7 +159,7 @@ test_expect_success 'diff succeeds even if prefetch triggered by break-rewrites'
|
||||
# We need baz to trigger break-rewrites detection.
|
||||
git -C client reset --hard HEAD &&
|
||||
|
||||
# break-rewrites detction in reset.
|
||||
# break-rewrites detection in reset.
|
||||
git -C client reset HEAD~1
|
||||
'
|
||||
|
||||
|
||||
@@ -71,13 +71,13 @@ Node-kind: file
|
||||
Node-action: add
|
||||
Prop-content-length: 10
|
||||
Text-content-length: 2401
|
||||
Text-content-md5: bfd8ff778d1492dc6758567373176a89
|
||||
Text-content-md5: d6a3917748b0c09ad85c2783f1d4dac1
|
||||
Content-length: 2411
|
||||
|
||||
PROPS-END
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -201,12 +201,12 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2465
|
||||
Text-content-md5: 16e38d9753b061731650561ce01b1195
|
||||
Text-content-md5: 3f413450a7a26596d9e512ee385a9b19
|
||||
Content-length: 2465
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -305,12 +305,12 @@ Node-path: trunk/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2521
|
||||
Text-content-md5: 0668418a621333f4aa8b6632cd63e2a0
|
||||
Text-content-md5: 89788781014278d76ff23648b8b08b2d
|
||||
Content-length: 2521
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -412,12 +412,12 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2593
|
||||
Text-content-md5: 5ccff689fb290e00b85fe18ee50c54ba
|
||||
Text-content-md5: 706d73919e6f319a0e624aa50c8b8b38
|
||||
Content-length: 2593
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -529,12 +529,12 @@ Node-path: trunk/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2713
|
||||
Text-content-md5: 0afbe34f244cd662b1f97d708c687f90
|
||||
Text-content-md5: 1c05266da99e8f01a5ccf816be47a484
|
||||
Content-length: 2713
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
|
||||
@@ -80,14 +80,14 @@ Node-kind: file
|
||||
Node-action: add
|
||||
Prop-content-length: 10
|
||||
Text-content-length: 2401
|
||||
Text-content-md5: bfd8ff778d1492dc6758567373176a89
|
||||
Text-content-sha1: 103205ce331f7d64086dba497574734f78439590
|
||||
Text-content-md5: d6a3917748b0c09ad85c2783f1d4dac1
|
||||
Text-content-sha1: 9ffe895eb95d4a7c2ee2712dcf7a13637edee6a9
|
||||
Content-length: 2411
|
||||
|
||||
PROPS-END
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -194,8 +194,8 @@ Node-kind: file
|
||||
Node-action: add
|
||||
Node-copyfrom-rev: 2
|
||||
Node-copyfrom-path: trunk/Makefile
|
||||
Text-copy-source-md5: bfd8ff778d1492dc6758567373176a89
|
||||
Text-copy-source-sha1: 103205ce331f7d64086dba497574734f78439590
|
||||
Text-copy-source-md5: d6a3917748b0c09ad85c2783f1d4dac1
|
||||
Text-copy-source-sha1: 9ffe895eb95d4a7c2ee2712dcf7a13637edee6a9
|
||||
|
||||
|
||||
Revision-number: 4
|
||||
@@ -228,8 +228,8 @@ Node-kind: file
|
||||
Node-action: add
|
||||
Node-copyfrom-rev: 2
|
||||
Node-copyfrom-path: trunk/Makefile
|
||||
Text-copy-source-md5: bfd8ff778d1492dc6758567373176a89
|
||||
Text-copy-source-sha1: 103205ce331f7d64086dba497574734f78439590
|
||||
Text-copy-source-md5: d6a3917748b0c09ad85c2783f1d4dac1
|
||||
Text-copy-source-sha1: 9ffe895eb95d4a7c2ee2712dcf7a13637edee6a9
|
||||
|
||||
|
||||
Revision-number: 5
|
||||
@@ -254,13 +254,13 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2465
|
||||
Text-content-md5: 16e38d9753b061731650561ce01b1195
|
||||
Text-content-sha1: 36da4b84ea9b64218ab48171dfc5c48ae025f38b
|
||||
Text-content-md5: 3f413450a7a26596d9e512ee385a9b19
|
||||
Text-content-sha1: b3cd389d63c5e3af4fe22b7464cf97968662ad1a
|
||||
Content-length: 2465
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -359,13 +359,13 @@ Node-path: branches/right/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2521
|
||||
Text-content-md5: 0668418a621333f4aa8b6632cd63e2a0
|
||||
Text-content-sha1: 4f29afd038e52f45acb5ef8c41acfc70062a741a
|
||||
Text-content-md5: 89788781014278d76ff23648b8b08b2d
|
||||
Text-content-sha1: f52afb2d6230e5a418416b77c3c9ad610edfd202
|
||||
Content-length: 2521
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -467,13 +467,13 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2529
|
||||
Text-content-md5: f6b197cc3f2e89a83e545d4bb003de73
|
||||
Text-content-sha1: 2f656677cfec0bceec85e53036ffb63e25126f8e
|
||||
Text-content-md5: abcac8d04eb061b0a3053e359e44a2a0
|
||||
Text-content-sha1: 866caf95e04809a5ed897aea41075b24833612ea
|
||||
Content-length: 2529
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -572,13 +572,13 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2593
|
||||
Text-content-md5: 5ccff689fb290e00b85fe18ee50c54ba
|
||||
Text-content-sha1: a13de8e23f1483efca3e57b2b64b0ae6f740ce10
|
||||
Text-content-md5: 706d73919e6f319a0e624aa50c8b8b38
|
||||
Text-content-sha1: 9992d5a9aea960c7856ef6a9364aedd5b710ef53
|
||||
Content-length: 2593
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -689,8 +689,8 @@ Node-kind: file
|
||||
Node-action: add
|
||||
Node-copyfrom-rev: 8
|
||||
Node-copyfrom-path: branches/left/Makefile
|
||||
Text-copy-source-md5: 5ccff689fb290e00b85fe18ee50c54ba
|
||||
Text-copy-source-sha1: a13de8e23f1483efca3e57b2b64b0ae6f740ce10
|
||||
Text-copy-source-md5: 706d73919e6f319a0e624aa50c8b8b38
|
||||
Text-copy-source-sha1: 9992d5a9aea960c7856ef6a9364aedd5b710ef53
|
||||
|
||||
|
||||
|
||||
@@ -761,13 +761,13 @@ Node-path: trunk/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2593
|
||||
Text-content-md5: 5ccff689fb290e00b85fe18ee50c54ba
|
||||
Text-content-sha1: a13de8e23f1483efca3e57b2b64b0ae6f740ce10
|
||||
Text-content-md5: 706d73919e6f319a0e624aa50c8b8b38
|
||||
Text-content-sha1: 9992d5a9aea960c7856ef6a9364aedd5b710ef53
|
||||
Content-length: 2593
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -942,13 +942,13 @@ Node-path: trunk/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2713
|
||||
Text-content-md5: 0afbe34f244cd662b1f97d708c687f90
|
||||
Text-content-sha1: 46d9377d783e67a9b581da110352e799517c8a14
|
||||
Text-content-md5: 1c05266da99e8f01a5ccf816be47a484
|
||||
Text-content-sha1: 0cba212974e2b288389d73317f3220be11158e00
|
||||
Content-length: 2713
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -1166,13 +1166,13 @@ Node-path: branches/left-sub/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2713
|
||||
Text-content-md5: 0afbe34f244cd662b1f97d708c687f90
|
||||
Text-content-sha1: 46d9377d783e67a9b581da110352e799517c8a14
|
||||
Text-content-md5: 1c05266da99e8f01a5ccf816be47a484
|
||||
Text-content-sha1: 0cba212974e2b288389d73317f3220be11158e00
|
||||
Content-length: 2713
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
@@ -1408,13 +1408,13 @@ Node-path: branches/left/Makefile
|
||||
Node-kind: file
|
||||
Node-action: change
|
||||
Text-content-length: 2713
|
||||
Text-content-md5: 0afbe34f244cd662b1f97d708c687f90
|
||||
Text-content-sha1: 46d9377d783e67a9b581da110352e799517c8a14
|
||||
Text-content-md5: 1c05266da99e8f01a5ccf816be47a484
|
||||
Text-content-sha1: 0cba212974e2b288389d73317f3220be11158e00
|
||||
Content-length: 2713
|
||||
|
||||
# -DCOLLISION_CHECK if you believe that SHA1's
|
||||
# 1461501637330902918203684832716283019655932542976 hashes do not give you
|
||||
# enough guarantees about no collisions between objects ever hapenning.
|
||||
# enough guarantees about no collisions between objects ever happening.
|
||||
#
|
||||
# -DNSEC if you want git to care about sub-second file mtimes and ctimes.
|
||||
# Note that you need some new glibc (at least >2.2.4) for this, and it will
|
||||
|
||||
@@ -138,7 +138,7 @@ raise errors during test execution.
|
||||
__Caution:__ If you use assertions inside of `test_suitename__initialize`,
|
||||
make sure that you do not rely on `__initialize` being completely run
|
||||
inside your `test_suitename__cleanup` function. Otherwise you might
|
||||
encounter ressource cleanup twice.
|
||||
encounter resource cleanup twice.
|
||||
|
||||
## How does Clar work?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user