From af8126a4a0b170b142a0c96cde1d7af94fe9ef60 Mon Sep 17 00:00:00 2001 From: VICIWUOHA Date: Mon, 24 Jun 2024 23:11:48 +0100 Subject: [PATCH 1/2] fix slight typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01e6c45..dc3828f 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ program can abort if an invalid flag is specified, but a misspelled environment variable will just be ignored. We've tried to stay backwards-compatible across major versions (by accepting deprecated flags and environment variables), but some things have evolved, and users are encouraged to use the most recent flags -for their major verion. +for their major version. ### Volumes From 28cf42fdaa1bd13113dd388182f17a7aa8fb17a4 Mon Sep 17 00:00:00 2001 From: VICIWUOHA Date: Mon, 24 Jun 2024 23:12:15 +0100 Subject: [PATCH 2/2] fix slight typo in v3-to-v4 docs --- v3-to-v4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3-to-v4.md b/v3-to-v4.md index fe4e52d..aa1639b 100644 --- a/v3-to-v4.md +++ b/v3-to-v4.md @@ -46,7 +46,7 @@ own style: either `-flag` or `--flag` were accepted. git-sync v4 only accepts long flag names in the more common two-dash style (`--flag`), and accepts short (single-character) flags in the one-dash style (`-v 2`). -The following does not detail every flag available in v4 - just the one that +The following does not detail every flag available in v4 - just the ones that existed in v3 and are different in v4. ### Verbosity: `--v` -> `-v` or `--verbose` @@ -164,7 +164,7 @@ though the old names are still accepted for compatibility. ### Depth git-sync v3 would sync the entire history of the remote repo by default. v4 -syncs just one commit, by default. This can be a significant performance and +syncs just one commit by default. This can be a significant performance and disk-space savings for large repos. Users who want the full history can specify `--depth=0`.