summaryrefslogtreecommitdiff
path: root/revision.c
diff options
context:
space:
mode:
authorBrandon Casey <casey@nrlssc.navy.mil>2009-03-20 03:47:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-03-20 20:32:33 (GMT)
commit4d6acb70411cd4fe69610cf1b22f186fa01614f7 (patch)
tree26b206a75519f28d59e1e34e718d74288637c412 /revision.c
parent79bc4c715516fdb393d107359327c1e7fbb8bf04 (diff)
downloadgit-4d6acb70411cd4fe69610cf1b22f186fa01614f7.zip
git-4d6acb70411cd4fe69610cf1b22f186fa01614f7.tar.gz
git-4d6acb70411cd4fe69610cf1b22f186fa01614f7.tar.bz2
Remove --kept-pack-only option and associated infrastructure
This option to pack-objects/rev-list was created to improve the -A and -a options of repack. It was found to be lacking in that it did not provide the ability to differentiate between local and non-local kept packs, and found to be unnecessary since objects residing in local kept packs can be filtered out by the --honor-pack-keep option. Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r--revision.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/revision.c b/revision.c
index 6d8ac46..50a5b5f 100644
--- a/revision.c
+++ b/revision.c
@@ -1062,10 +1062,6 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
revs->edge_hint = 1;
} else if (!strcmp(arg, "--unpacked")) {
revs->unpacked = 1;
- revs->kept_pack_only = 0;
- } else if (!strcmp(arg, "--kept-pack-only")) {
- revs->unpacked = 1;
- revs->kept_pack_only = 1;
} else if (!prefixcmp(arg, "--unpacked=")) {
die("--unpacked=<packfile> no longer supported.");
} else if (!strcmp(arg, "-r")) {
@@ -1475,10 +1471,7 @@ enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
{
if (commit->object.flags & SHOWN)
return commit_ignore;
- if (revs->unpacked &&
- (revs->kept_pack_only
- ? has_sha1_kept_pack(commit->object.sha1)
- : has_sha1_pack(commit->object.sha1)))
+ if (revs->unpacked && has_sha1_pack(commit->object.sha1))
return commit_ignore;
if (revs->show_all)
return commit_show;