From: "brian m. carlson" <sandals@crustytoothpaste.net>
To: git@vger.kernel.org
Cc: "Jeff King" <peff@peff.net>,
"Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>,
"Michael Haggerty" <mhagger@alum.mit.edu>
Subject: [PATCH v3 00/13] object_id part 2
Date: Fri, 9 Oct 2015 01:43:46 +0000 [thread overview]
Message-ID: <1444355039-186351-1-git-send-email-sandals@crustytoothpaste.net> (raw)
This is another series of conversions to struct object_id.
This series converts more of the refs code and struct object to use
struct object_id. It introduces an additional helper function,
has_object_file, which is the equivalent of has_sha1_file. The name was
chosen to be slightly more logical than has_oid_file, although it can be
changed if desired.
Unlike previous iterations, this series of patches should make it
entirely to the list. It split out the conversion of struct object into
the introduction of a helper macro, the use of that macro in several
areas, the conversion of other struct object uses and update of the
macro, and the removal of the macro. The final patch of that set
(patch 12) was implemented entirely by the use of a Perl script, which
will be included for inspection.
Patches 1 through 8 remain unchanged except for the rebase and the
necessary changes due to other topics. Necessary changes were minimal.
This series is also available in the object-id-part2 branch from
https://github.com/bk2204/git.git
https://git.crustytoothpaste.net/git/bmc/git.git
Changes from v2:
* Rebase on latest master.
* Split out the conversion of struct object into multiple patches.
brian m. carlson (13):
refs: convert some internal functions to use object_id
sha1_file: introduce has_object_file helper.
Convert struct ref to use object_id.
add_sought_entry_mem: convert to struct object_id
parse_fetch: convert to use struct object_id
get_remote_heads: convert to struct object_id
push_refs_with_export: convert to struct object_id
ref_newer: convert to use struct object_id
object: introduce get_object_hash macro.
Add several uses of get_object_hash.
Convert struct object to object_id
Remove get_object_hash.
remote: convert functions to struct object_id
archive.c | 6 +--
bisect.c | 10 ++--
branch.c | 2 +-
builtin/am.c | 2 +-
builtin/blame.c | 52 ++++++++++----------
builtin/branch.c | 2 +-
builtin/checkout.c | 22 ++++-----
builtin/clone.c | 18 +++----
builtin/commit-tree.c | 4 +-
builtin/commit.c | 8 ++--
builtin/describe.c | 20 ++++----
builtin/diff-tree.c | 12 ++---
builtin/diff.c | 12 ++---
builtin/fast-export.c | 34 +++++++-------
builtin/fetch-pack.c | 14 +++---
builtin/fetch.c | 54 ++++++++++-----------
builtin/fmt-merge-msg.c | 6 +--
builtin/fsck.c | 36 +++++++-------
builtin/grep.c | 6 +--
builtin/index-pack.c | 10 ++--
builtin/log.c | 36 +++++++-------
builtin/ls-remote.c | 2 +-
builtin/merge-base.c | 8 ++--
builtin/merge-tree.c | 6 +--
builtin/merge.c | 60 ++++++++++++------------
builtin/name-rev.c | 12 ++---
builtin/notes.c | 2 +-
builtin/pack-objects.c | 16 +++----
builtin/pull.c | 2 +-
builtin/receive-pack.c | 2 +-
builtin/reflog.c | 4 +-
builtin/remote.c | 12 ++---
builtin/replace.c | 6 +--
builtin/reset.c | 30 ++++++------
builtin/rev-list.c | 18 +++----
builtin/rev-parse.c | 4 +-
builtin/shortlog.c | 2 +-
builtin/show-branch.c | 8 ++--
builtin/unpack-objects.c | 10 ++--
builtin/worktree.c | 2 +-
bundle.c | 20 ++++----
cache-tree.c | 2 +-
cache.h | 3 ++
combine-diff.c | 4 +-
commit.c | 32 ++++++-------
connect.c | 22 +++++----
decorate.c | 2 +-
diff-lib.c | 2 +-
fetch-pack.c | 24 +++++-----
fsck.c | 14 +++---
http-backend.c | 2 +-
http-push.c | 88 +++++++++++++++++-----------------
http.c | 2 +-
line-log.c | 6 +--
list-objects.c | 4 +-
log-tree.c | 40 ++++++++--------
merge-blobs.c | 4 +-
merge-recursive.c | 26 +++++-----
merge.c | 2 +-
notes-merge.c | 24 +++++-----
object.c | 8 ++--
object.h | 2 +-
pack-bitmap-write.c | 16 +++----
pack-bitmap.c | 34 +++++++-------
patch-ids.c | 6 +--
pretty.c | 18 +++----
ref-filter.c | 18 +++----
refs.c | 106 ++++++++++++++++++++---------------------
remote-curl.c | 20 ++++----
remote.c | 120 +++++++++++++++++++++++------------------------
remote.h | 8 ++--
revision.c | 48 +++++++++----------
send-pack.c | 16 +++----
sequencer.c | 40 ++++++++--------
server-info.c | 2 +-
sha1_file.c | 5 ++
sha1_name.c | 20 ++++----
shallow.c | 6 +--
submodule.c | 8 ++--
tag.c | 10 ++--
test-match-trees.c | 2 +-
transport-helper.c | 24 +++++-----
transport.c | 32 ++++++-------
transport.h | 8 ++--
tree.c | 10 ++--
upload-pack.c | 26 +++++-----
walker.c | 20 ++++----
wt-status.c | 2 +-
88 files changed, 771 insertions(+), 759 deletions(-)
--
2.6.1
next reply other threads:[~2015-10-09 1:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-09 1:43 brian m. carlson [this message]
2015-10-09 1:43 ` [PATCH v3 01/13] refs: convert some internal functions to use object_id brian m. carlson
2015-10-13 11:43 ` Michael Haggerty
2015-10-14 2:50 ` brian m. carlson
2015-10-09 1:43 ` [PATCH v3 02/13] sha1_file: introduce has_object_file helper brian m. carlson
2015-10-09 1:43 ` [PATCH v3 03/13] Convert struct ref to use object_id brian m. carlson
2015-10-09 1:43 ` [PATCH v3 04/13] add_sought_entry_mem: convert to struct object_id brian m. carlson
2015-10-09 1:43 ` [PATCH v3 05/13] parse_fetch: convert to use " brian m. carlson
2015-10-09 1:43 ` [PATCH v3 06/13] get_remote_heads: convert to " brian m. carlson
2015-10-09 1:43 ` [PATCH v3 07/13] push_refs_with_export: " brian m. carlson
2015-10-09 1:43 ` [PATCH v3 08/13] ref_newer: convert to use " brian m. carlson
2015-10-09 1:43 ` [PATCH v3 09/13] object: introduce get_object_hash macro brian m. carlson
2015-10-09 1:43 ` [PATCH v3 10/13] Add several uses of get_object_hash brian m. carlson
2015-10-09 1:43 ` [PATCH v3 11/13] Convert struct object to object_id brian m. carlson
2015-10-09 1:43 ` [PATCH v3 12/13] Remove get_object_hash brian m. carlson
2015-10-09 1:43 ` [PATCH v3 13/13] remote: convert functions to struct object_id brian m. carlson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1444355039-186351-1-git-send-email-sandals@crustytoothpaste.net \
--to=sandals@crustytoothpaste.net \
--cc=git@vger.kernel.org \
--cc=mhagger@alum.mit.edu \
--cc=pclouds@gmail.com \
--cc=peff@peff.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).