]> git.ipfire.org Git - thirdparty/git.git/commit - transport.c
push: further clean up fields of "struct ref"
authorJunio C Hamano <gitster@pobox.com>
Tue, 22 Jan 2013 04:24:07 +0000 (20:24 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 24 Jan 2013 22:37:17 +0000 (14:37 -0800)
commit5ece083fc7ffd60d38b9abf7797fbf00decd2bcc
tree720da8792593369e955915f28078ca4182df18c6
parent256b9d70a497534338f0c22101cb6566ab3f1665
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>
cache.h
remote.c
transport.c