diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-01-11 16:05:48 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-11 09:11:10 -0800 |
commit | cfb70e1fa506e79f337e716ed4813c6caa428644 (patch) | |
tree | 74d2d4fc76e8afe0113d55b40aef93b5b6208151 | |
parent | upload-pack: fix off-by-one depth calculation in shallow clone (diff) | |
download | tgif-cfb70e1fa506e79f337e716ed4813c6caa428644.tar.xz |
fetch: elaborate --depth action
--depth is explained as deepen, but the way it's applied, it can
shorten the history as well. Keen users may have noticed the
implication by the phrase "the specified number of commits from the
tip of each remote branch". Put "shorten" in the description to make
it clearer.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/fetch-options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/fetch-options.txt b/Documentation/fetch-options.txt index 7fea9a8ecd..9cb649673d 100644 --- a/Documentation/fetch-options.txt +++ b/Documentation/fetch-options.txt @@ -8,7 +8,7 @@ option old data in `.git/FETCH_HEAD` will be overwritten. --depth=<depth>:: - Deepen the history of a 'shallow' repository created by + Deepen or shorten the history of a 'shallow' repository created by `git clone` with `--depth=<depth>` option (see linkgit:git-clone[1]) to the specified number of commits from the tip of each remote branch history. Tags for the deepened commits are not fetched. |