diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-22 05:24:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-24 23:37:17 +0100 |
commit | 5ece083fc7ffd60d38b9abf7797fbf00decd2bcc (patch) | |
tree | 720da8792593369e955915f28078ca4182df18c6 /cache.h | |
parent | push: fix "refs/tags/ hierarchy cannot be updated without --force" (diff) | |
download | git-5ece083fc7ffd60d38b9abf7797fbf00decd2bcc.tar.xz git-5ece083fc7ffd60d38b9abf7797fbf00decd2bcc.zip |
push: further clean up fields of "struct ref"
The "nonfastforward" and "update" fields are only used while
deciding what value to assign to the "status" locally in a single
function. Remove them from the "struct ref".
The "requires_force" field is not used to decide if the proposed
update requires a --force option to succeed, or to record such a
decision made elsewhere. It is used by status reporting code that
the particular update was "forced". Rename it to "forced_update",
and move the code to assign to it around to further clarify how it
is used and what it is used for.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1001,10 +1001,8 @@ struct ref { char *symref; unsigned int force:1, - requires_force:1, + forced_update:1, merge:1, - nonfastforward:1, - update:1, deletion:1; enum { REF_STATUS_NONE = 0, |