summaryrefslogtreecommitdiff
path: root/Documentation/howto/use-git-daemon.txt
diff options
context:
space:
mode:
authorLibravatar brian m. carlson <sandals@crustytoothpaste.net>2017-05-01 02:29:03 +0000
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-05-02 10:48:20 +0900
commitd7e6b6a8dcc8a98a4dcf6bc291f1e68b1acaecae (patch)
tree796b4889c03671932630ba250f1eb61d808a56ea /Documentation/howto/use-git-daemon.txt
parentbuiltin/rev-parse: convert to struct object_id (diff)
downloadtgif-d7e6b6a8dcc8a98a4dcf6bc291f1e68b1acaecae.tar.xz
fast-import: convert internal structs to struct object_id
Convert struct tree_entry_ms, struct branch, struct tag, and struct hash_list to use struct object_id by changing the definition and applying the following semantic patch, plus the standard object_id transforms: @@ struct tree_entry_ms E1; @@ - E1.sha1 + E1.oid.hash @@ struct tree_entry_ms *E1; @@ - E1->sha1 + E1->oid.hash @@ struct branch E1; @@ - E1.sha1 + E1.oid.hash @@ struct branch *E1; @@ - E1->sha1 + E1->oid.hash @@ struct tag E1; @@ - E1.sha1 + E1.oid.hash @@ struct tag *E1; @@ - E1->sha1 + E1->oid.hash @@ struct hash_list E1; @@ - E1.sha1 + E1.oid.hash @@ struct hash_list *E1; @@ - E1->sha1 + E1->oid.hash Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/howto/use-git-daemon.txt')
0 files changed, 0 insertions, 0 deletions