diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-06-26 07:58:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-27 10:58:02 -0700 |
commit | 2cb040baa6fcb8a6314a54933cbcb4d3fcb60401 (patch) | |
tree | cfcef2f1400ad420322b564053bab873b1a2541a /Documentation/git-fetch.txt | |
parent | d0b39a03cd5d6d5f9e2eac4907d9f47ec3d821da (diff) | |
download | git-2cb040baa6fcb8a6314a54933cbcb4d3fcb60401.tar.gz |
fetch: change flag code for displaying tag update and deleted ref
This makes the fetch flag code consistent with push, where '-' means
deleted ref.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-fetch.txt')
-rw-r--r-- | Documentation/git-fetch.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-fetch.txt b/Documentation/git-fetch.txt index cbf441f671..771dde51cd 100644 --- a/Documentation/git-fetch.txt +++ b/Documentation/git-fetch.txt @@ -120,8 +120,8 @@ flag:: A single character indicating the status of the ref: (space);; for a successfully fetched fast-forward; `+`;; for a successful forced update; -`x`;; for a successfully pruned ref; -`-`;; for a successful tag update; +`-`;; for a successfully pruned ref; +`t`;; for a successful tag update; `*`;; for a successfully fetched new ref; `!`;; for a ref that was rejected or failed to update; and `=`;; for a ref that was up to date and did not need fetching. |