@@ -1055,14 +1055,9 @@ static int limit_list(struct rev_info *revs)
10551055 return -1 ;
10561056 if (obj -> flags & UNINTERESTING ) {
10571057 mark_parents_uninteresting (commit );
1058- if (revs -> show_all )
1059- p = & commit_list_insert (commit , p )-> next ;
10601058 slop = still_interesting (list , date , slop , & interesting_cache );
10611059 if (slop )
10621060 continue ;
1063- /* If showing all, add the whole pending list to the end */
1064- if (revs -> show_all )
1065- * p = list ;
10661061 break ;
10671062 }
10681063 if (revs -> min_age != -1 && (commit -> date > revs -> min_age ))
@@ -1854,8 +1849,6 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
18541849 revs -> dense = 1 ;
18551850 } else if (!strcmp (arg , "--sparse" )) {
18561851 revs -> dense = 0 ;
1857- } else if (!strcmp (arg , "--show-all" )) {
1858- revs -> show_all = 1 ;
18591852 } else if (!strcmp (arg , "--in-commit-order" )) {
18601853 revs -> tree_blobs_in_commit_order = 1 ;
18611854 } else if (!strcmp (arg , "--remove-empty" )) {
@@ -3062,8 +3055,6 @@ enum commit_action get_commit_action(struct rev_info *revs, struct commit *commi
30623055 return commit_ignore ;
30633056 if (revs -> unpacked && has_sha1_pack (commit -> object .oid .hash ))
30643057 return commit_ignore ;
3065- if (revs -> show_all )
3066- return commit_show ;
30673058 if (commit -> object .flags & UNINTERESTING )
30683059 return commit_ignore ;
30693060 if (revs -> min_age != -1 &&
@@ -3162,7 +3153,6 @@ enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
31623153 enum commit_action action = get_commit_action (revs , commit );
31633154
31643155 if (action == commit_show &&
3165- !revs -> show_all &&
31663156 revs -> prune && revs -> dense && want_ancestry (revs )) {
31673157 /*
31683158 * --full-diff on simplified parents is no good: it
0 commit comments